Skip to content

Commit

Permalink
Fix fzf ignoring git-ignored files
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelRobitaille committed Mar 12, 2018
1 parent a75455c commit a98cc60
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion omzsh/exports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ export NODE_ENV=development
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8

export FZF_DEFAULT_COMMAND='ag -l --nocolor --hidden --follow \
export FZF_DEFAULT_COMMAND='ag -l \
--nocolor \
--hidden \
--follow \
--skip-vcs-ignores \
--ignore .git \
--ignore node_modules \
--ignore public \
--ignore build \
--ignore vendor \
-g ""'

Expand Down

0 comments on commit a98cc60

Please sign in to comment.