]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Following symlinks type in cf()
[dotfiles.git] / zsh / .zshrc
index 7b61fe6c5fd7106b4965490d3777bbb0c5bb692c..79e2a928302f778db97e9e095efe83b75debc5e7 100644 (file)
@@ -137,6 +137,9 @@ GREP_ARGS=(
     --with-filename
     --line-number
     --dereference-recursive
+    --binary-files=without-match
+    --exclude-dir=.git
+    --exclude-dir=.tags
 )
 LESS_COLOURED=(less --RAW-CONTROL-CHARS)
 g() {
@@ -212,7 +215,7 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
 # fzf {{{
 export FZF_DEFAULT_OPTS="--color=16 --info=inline"
 cf() {
-    local dir=$(find ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
+    local dir=$(find -L ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
         fzf --height 40% --reverse --preview="tree -CN {}")
     [[ -z $dir ]] || cd $dir
 }