X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=zsh%2F.zshrc;h=02a85dbaaa634b7f084e052a514bd527c80a16df;hb=a6a4a2670f0c957bcf60af4c49a64c548e45de77;hp=27a1bde2de5d70f12f08f26cb86c562eee96def7;hpb=39b82358c5ab5ae59e607ab4c50f8cf866296d96;p=dotfiles.git diff --git a/zsh/.zshrc b/zsh/.zshrc index 27a1bde..02a85db 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -23,8 +23,8 @@ export KEYTIMEOUT=1 # }}} # Home/end {{{ -bindkey "^[[1~" beginning-of-line -bindkey "^[[4~" end-of-line +bindkey "^[[1~" beginning-of-line # Home +bindkey "^[[4~" end-of-line # End # }}} # Command-line editing {{{ @@ -41,7 +41,7 @@ bindkey "^[[A" history-beginning-search-backward-end bindkey "^[[B" history-beginning-search-forward-end beginning-history-incremental-pattern-search-backward() { - zle history-incremental-pattern-search-backward $(echo $BUFFER | sed "s/ /*/g") + zle history-incremental-pattern-search-backward ${BUFFER:gs/ /*/} } zle -N beginning-history-incremental-pattern-search-backward bindkey "^[[1;2A" beginning-history-incremental-pattern-search-backward @@ -51,14 +51,14 @@ bindkey -M isearch "^[[B" history-incremental-pattern-search-forward # Prompt {{{ function zle-line-init zle-keymap-select { - mode_vi="${${KEYMAP/vicmd/+}/(main|viins)/-}" - [ $timer ] && timer_show=$(( $SECONDS - $timer )) + mode_vi=${${KEYMAP/vicmd/+}/(main|viins)/-} + [[ $timer ]] && timer_show=$(( $SECONDS - $timer )) prompt="%2~|" prompt+="%U${timer_show}%u|" prompt+="%B%?%b" prompt+="${mode_vi}" prompt+="%B%F{magenta}%#%f%b " - PS1="$prompt" + PS1=$prompt zle reset-prompt } zle -N zle-line-init @@ -76,25 +76,21 @@ precmd() { # Aliases {{{ alias l="ls -AF " alias ll="ls -AFl " -alias ssh="TERM=xterm ssh" alias vi="vim" -alias more="less" alias m="less " alias -g M="| less" -alias -g W="| wc -l" +alias -g W="| wc -l | sed 's/ //g'" alias mc="mc --nomouse" -alias sent="mutt -f =sent-\`date '+%y-%m'\`" -alias zc=~/bin/dc-wrapped.sh f() { - # find . -name "*$1*" -print - print -C 1 **$1* + find . -name "*$1*" -print } +alias ssh="TERM=xterm ssh" +alias sshnm="ssh -S none" ssht() { - ssh -C -t "$1" tmux attach -t0 + ssh -C -t $1 tmux attach -t0 } -alias sshnm="ssh -S none" # }}} # Faster movement {{{ @@ -106,12 +102,12 @@ cddotdot() { zle -N cddotdot bindkey "OQ" cddotdot # F2 -pushdquiet() { +popdquiet() { popd zle reset-prompt } -zle -N pushdquiet -bindkey "OS" pushdquiet # F4 +zle -N popdquiet +bindkey "OS" popdquiet # F4 # }}} # Git {{{ @@ -123,38 +119,34 @@ 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 "OR" " git status --short\n" # F3 # }}} # grep {{{ -GREP=/usr/local/bin/grep -GREP_ARGS="--color=always --with-filename --line-number --dereference-recursive" -LESS_COLORED="less --RAW-CONTROL-CHARS" +GREP_ARGS=( + --colour=always + --with-filename + --line-number + --dereference-recursive + --binary-files=without-match + --exclude-dir=.git + --exclude-dir=.tags +) g() { - $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED} + grep $GREP_ARGS $@ | less } GS() { - $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED} + grep $GREP_ARGS $@ | sort --numeric-sort | less } -alias -g G="| $GREP --color" +alias -g G="| grep --colour=always" alias gg="git grep " # }}} # GPG agent {{{ -GPG_TTY=$(tty) -export GPG_TTY -# }}} - -# Virtualenv {{{ -venv() { - . /usr/local/bin/virtualenvwrapper.sh -} +export GPG_TTY=$(tty) # }}} # Mail {{{ @@ -163,22 +155,19 @@ 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 "OP" " inc\n" # F1 # }}} -# Named directories {{{ -. ~/.zhashd -# }}} - # Completion {{{ 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 + [[ ${words[1]} != man ]] || { _man && return 0 } + [[ $CURRENT -eq 1 ]] && _command_names || _files && return 0 # MAGIC_EQUAL_SUBST {{{ - [[ "$PREFIX" = *\=* ]] || return 1 - compstate[parameter]="${PREFIX%%\=*}" + [[ $PREFIX = *\=* ]] || return 1 + compstate[parameter]=${PREFIX%%\=*} compset -P 1 "*=" _value # }}} @@ -211,17 +200,26 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan" # }}} # fzf {{{ -alias -g PE="| pe" - -export FZF_DEFAULT_OPTS="--color=16 --info=inline --preview='less -N -S {}'" - -_fzf_find() { - find . \( -path "*/\.git" -o -fstype devfs -o -fstype procfs \) -prune \ - -o -type d -print $@ 2>/dev/null | cut -b3- +cf() { + local dir=$(find -L ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print | + fzf --height 40% --reverse --preview="tree -CN {}") + [[ -z $dir ]] || { print -s cd $dir ; cd $dir } } +# }}} + +# Named directories {{{ +while read w ; do + w=(${(s/=/)w}) + hash -d ${w[1]}=${~${w[2]}} +done < ~/.zhashd +# }}} -export FZF_CTRL_T_COMMAND="_fzf_find -o -type f -print -o -type l -print" -export FZF_ALT_C_COMMAND=_fzf_find +# autoenv {{{ +. ~/work/zsh-autoenv/autoenv.zsh +# }}} -. ~/work/fzf/shell/key-bindings.zsh +# Virtualenv {{{ +venv() { + . /usr/local/bin/virtualenvwrapper.sh +} # }}}