]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Move envvars to .zshenv
[dotfiles.git] / zsh / .zshrc
index ee4704c16afa3b87082f3a627b863c203e303142..660346fbb7be11c0935704d825c185dad112bc56 100644 (file)
@@ -104,12 +104,12 @@ cddotdot() {
 zle -N cddotdot
 bindkey "\eOQ" cddotdot # F2
 
-pushdquiet() {
+popdquiet() {
     popd
     zle reset-prompt
 }
-zle -N pushdquiet
-bindkey "\eOS" pushdquiet # F4
+zle -N popdquiet
+bindkey "\eOS" popdquiet # F4
 # }}}
 
 # Git {{{
@@ -173,7 +173,7 @@ zstyle ":completion:*:functions" ignored-patterns "_*"
 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
 _mycomp () {
     [[ ${words[1]} != man ]] || { _man && return 0 }
-    [[ $CURRENT -eq 1 ]] && _command_names ||  _files && return 0
+    [[ $CURRENT -eq 1 ]] && _command_names || _files && return 0
     # MAGIC_EQUAL_SUBST {{{
     [[ $PREFIX = *\=* ]] || return 1
     compstate[parameter]=${PREFIX%%\=*}
@@ -209,7 +209,6 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
 # }}}
 
 # fzf {{{
-export FZF_DEFAULT_OPTS="--color=16 --info=inline"
 cf() {
     local dir=$(find -L ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
         fzf --height 40% --reverse --preview="tree -CN {}")
@@ -225,6 +224,5 @@ done < ~/.zhashd
 # }}}
 
 # autoenv {{{
-export AUTOENV_AUTH_FILE=~/.zautoenv-auth
 . ~/work/zsh-autoenv/autoenv.zsh
 # }}}