]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Excess lines
[dotfiles.git] / zsh / .zshrc
index 7b61fe6c5fd7106b4965490d3777bbb0c5bb692c..ee4704c16afa3b87082f3a627b863c203e303142 100644 (file)
@@ -83,7 +83,6 @@ alias m="less "
 alias -g M="| less"
 alias -g W="| wc -l | sed 's/ //g'"
 alias mc="mc --nomouse"
-alias sent="mutt -f =sent-\`date '+%y-%m'\`"
 
 f() {
     # find . -name "*$1*" -print
@@ -122,11 +121,8 @@ alias Gdc="git diff --cached"
 alias Gs="git show --show-signature"
 alias Gm="git diff --name-only --diff-filter=M"
 alias Gam="git commit --amend"
-
 alias Gl="git log --oneline --graph --decorate=short"
 alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'"
-alias Gr="git --no-pager log --oneline -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'"
-alias Grr="git --no-pager log --oneline --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -"
 
 bindkey -s "\eOR" " git status --short\n" # F3
 # }}}
@@ -137,6 +133,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() {
@@ -150,8 +149,7 @@ alias gg="git grep "
 # }}}
 
 # GPG agent {{{
-GPG_TTY=$(tty)
-export GPG_TTY
+export GPG_TTY=$(tty)
 # }}}
 
 # Virtualenv {{{
@@ -166,6 +164,7 @@ mailpath=(
     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
 )
 alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
+alias sent="mutt -f =sent-\`date '+%y-%m'\`"
 bindkey -s "\eOP" " inc\n" # F1
 # }}}
 
@@ -212,9 +211,9 @@ 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
+    [[ -z $dir ]] || { print -s cd $dir ; cd $dir }
 }
 # }}}