]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Following symlinks type in cf()
[dotfiles.git] / zsh / .zshrc
index 7351026a8f65531e6052a7d0f3d82b636cf7ec70..79e2a928302f778db97e9e095efe83b75debc5e7 100644 (file)
@@ -133,19 +133,22 @@ bindkey -s "\eOR" " git status --short\n" # F3
 
 # grep {{{
 GREP_ARGS=(
-    --color=always
+    --colour=always
     --with-filename
     --line-number
     --dereference-recursive
+    --binary-files=without-match
+    --exclude-dir=.git
+    --exclude-dir=.tags
 )
-LESS_COLORED=(less --RAW-CONTROL-CHARS)
+LESS_COLOURED=(less --RAW-CONTROL-CHARS)
 g() {
-    grep $GREP_ARGS $@ | $LESS_COLORED
+    grep $GREP_ARGS $@ | $LESS_COLOURED
 }
 GS() {
-    grep $GREP_ARGS $@ | sort --numeric-sort | $LESS_COLORED
+    grep $GREP_ARGS $@ | sort --numeric-sort | $LESS_COLOURED
 }
-alias -g G="| grep --color=always"
+alias -g G="| grep --colour=always"
 alias gg="git grep "
 # }}}
 
@@ -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
 }