1 # vim: foldmethod=marker:foldlevel=0
4 setopt INTERACTIVE_COMMENTS
5 setopt GLOB_STAR_SHORT GLOB_DOTS EXTENDED_GLOB
7 setopt AUTO_PUSHD PUSHD_IGNORE_DUPS
14 setopt APPEND_HISTORY SHARE_HISTORY INC_APPEND_HISTORY HIST_IGNORE_ALL_DUPS
15 setopt HIST_IGNORE_SPACE
16 HISTORY_IGNORE="(yt* *|t *|t|mmfileget *|arr|rss)"
25 bindkey "^[[1~" beginning-of-line
26 bindkey "^[[4~" end-of-line
29 # Command-line editing {{{
30 autoload -U edit-command-line
31 zle -N edit-command-line
32 bindkey -M vicmd v edit-command-line
36 autoload -U history-search-end
37 zle -N history-beginning-search-backward-end history-search-end
38 zle -N history-beginning-search-forward-end history-search-end
39 bindkey "^[[A" history-beginning-search-backward-end
40 bindkey "^[[B" history-beginning-search-forward-end
42 beginning-history-incremental-pattern-search-backward() {
43 zle history-incremental-pattern-search-backward $(echo $BUFFER | sed "s/ /*/g")
45 zle -N beginning-history-incremental-pattern-search-backward
46 bindkey "^[[1;2A" beginning-history-incremental-pattern-search-backward
47 bindkey -M isearch "^[[A" history-incremental-pattern-search-backward
48 bindkey -M isearch "^[[B" history-incremental-pattern-search-forward
52 function zle-line-init zle-keymap-select {
53 mode_vi="${${KEYMAP/vicmd/+}/(main|viins)/-}"
54 [ $timer ] && timer_show=$(( $SECONDS - $timer ))
56 prompt+="%U${timer_show}%u|"
59 prompt+="%B%F{magenta}%#%f%b "
64 zle -N zle-keymap-select
71 printf "\a\033]2;\033\\"
78 alias ssh="TERM=xterm ssh"
84 alias mc="mc --nomouse"
87 # find . -name "*$1*" -print
92 ssh -C -t "$1" tmux attach -t0
94 alias sshnm="ssh -S none"
104 bindkey "
\eOQ" cddotdot # F2
111 bindkey "
\eOS" pushdquiet # F4
116 alias Gb="git branch"
117 alias Gc="git checkout"
120 alias Gm="git diff --name-only --diff-filter=M"
121 alias Gam="git commit --amend"
123 git_common="--oneline --abbrev-commit"
124 alias Gl="git log $git_common --graph --decorate=short"
125 alias Gr="git --no-pager log $git_common -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'"
126 alias Grr="git --no-pager log $git_common --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -"
128 bindkey -s "
\eOR" " git status --short\n" # F3
132 GREP=/usr/local/bin/grep
133 GREP_ARGS="--color=always --with-filename --line-number --recursive"
134 LESS_COLORED="less --RAW-CONTROL-CHARS"
136 $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED}
139 $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED}
141 alias -g G="| $GREP --color"
152 . /usr/local/bin/virtualenvwrapper.sh
158 ~/mail/mbox"?Neue Nachrichten in =mbox"
159 ~/mail/arbeit"?Neue Nachrichten in =arbeit"
161 alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
162 alias rss="mutt -f \=rss"
163 bindkey -s "
\eOP" " inc\n" # F1
171 # Named directories {{{
176 zstyle ":completion:*:functions" ignored-patterns "_*"
177 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
179 [ "$words[1]" != "man" ] || { _man && return 0 }
180 [ $CURRENT -eq 1 ] && _command_names || _files && return 0
181 # MAGIC_EQUAL_SUBST {{{
182 [[ "$PREFIX" = *\=* ]] || return 1
183 compstate[parameter]="${PREFIX%%\=*}"
188 zstyle ":completion:*" completer _mycomp _parameters
189 autoload -U compinit ; compinit -d /tmp/.zcompdump
190 zstyle ":completion:*:default" list-colors ""
195 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
196 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
197 typeset -A ZSH_HIGHLIGHT_STYLES
198 ZSH_HIGHLIGHT_STYLES[assign]="fg=cyan"
199 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
200 ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold"
201 ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green"
202 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
203 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
204 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
205 ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"
206 ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline"
210 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
211 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"