Replies: 1 comment 1 reply
-
I think this issue is more likely related to sharkdp/fd itself. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The ~/Library and dotfiles in the home dir constantly slow down fzf (using fd) and pollute the results. Its very noisy in general.
I havent figured out a way to ignore these by default in zshrc.
Things I've tried
export FZF_DEFAULT_COMMAND="fd --type f --exclude '.*' --exclude \"$HOME/Library\""
- Does not ignore the ~/Library folderexport FZF_DEFAULT_COMMAND="fd --type f --exclude '.*' --exclude Library". Works but ignores all dotfiles and Library folders regardless of where you are, not just the ~/Library
Tried
$HOME/.* $HOME/Library
in .fdignore. Did not work.
I feel like I am missing something basic - surely this is a basic use case that has been addressed already?
Beta Was this translation helpful? Give feedback.
All reactions