]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zshrc
Python is far least important -- move to the end
[dotfiles.git] / zsh / .zshrc
1 # vim: foldmethod=marker:foldlevel=0
2
3 # Basic options {{{
4 setopt INTERACTIVE_COMMENTS
5 setopt GLOB_STAR_SHORT GLOB_DOTS EXTENDED_GLOB
6 setopt NO_NOMATCH
7 setopt AUTO_PUSHD PUSHD_IGNORE_DUPS
8 setopt PIPE_FAIL
9
10 setopt RM_STAR_SILENT
11 export LISTMAX=9999
12 # }}}
13
14 # History options {{{
15 setopt APPEND_HISTORY SHARE_HISTORY INC_APPEND_HISTORY HIST_IGNORE_ALL_DUPS
16 setopt HIST_IGNORE_SPACE
17 HISTORY_IGNORE="(yt* *|t *|t|sdcv *|mmfileget *|arr)"
18 # }}}
19
20 # Vi mode {{{
21 bindkey -v
22 export KEYTIMEOUT=1
23 # }}}
24
25 # Home/end {{{
26 bindkey "^[[1~" beginning-of-line # Home
27 bindkey "^[[4~" end-of-line # End
28 # }}}
29
30 # Command-line editing {{{
31 autoload -U edit-command-line
32 zle -N edit-command-line
33 bindkey -M vicmd v edit-command-line
34 # }}}
35
36 # History search {{{
37 autoload -U history-search-end
38 zle -N history-beginning-search-backward-end history-search-end
39 zle -N history-beginning-search-forward-end history-search-end
40 bindkey "^[[A" history-beginning-search-backward-end
41 bindkey "^[[B" history-beginning-search-forward-end
42
43 beginning-history-incremental-pattern-search-backward() {
44     zle history-incremental-pattern-search-backward ${BUFFER:gs/ /*/}
45 }
46 zle -N beginning-history-incremental-pattern-search-backward
47 bindkey "^[[1;2A" beginning-history-incremental-pattern-search-backward
48 bindkey -M isearch "^[[A" history-incremental-pattern-search-backward
49 bindkey -M isearch "^[[B" history-incremental-pattern-search-forward
50 # }}}
51
52 # Prompt {{{
53 function zle-line-init zle-keymap-select {
54     mode_vi=${${KEYMAP/vicmd/+}/(main|viins)/-}
55     [[ $timer ]] && timer_show=$(( $SECONDS - $timer ))
56     prompt="%2~|"
57     prompt+="%U${timer_show}%u|"
58     prompt+="%B%?%b"
59     prompt+="${mode_vi}"
60     prompt+="%B%F{magenta}%#%f%b "
61     PS1=$prompt
62     zle reset-prompt
63 }
64 zle -N zle-line-init
65 zle -N zle-keymap-select
66
67 preexec() {
68     timer=$SECONDS
69 }
70
71 precmd() {
72     printf "\a\033]2;\033\\"
73 }
74 # }}}
75
76 # Aliases {{{
77 alias l="ls -AF "
78 alias ll="ls -AFl "
79 alias vi="vim"
80 alias m="less "
81 alias -g M="| less"
82 alias -g W="| wc -l | sed 's/ //g'"
83 alias mc="mc --nomouse"
84
85 f() {
86     # find . -name "*$1*" -print
87     print -C 1 **$1*
88 }
89
90 alias ssh="TERM=xterm ssh"
91 alias sshnm="ssh -S none"
92 ssht() {
93     ssh -C -t $1 tmux attach -t0
94 }
95 # }}}
96
97 # Faster movement {{{
98 cddotdot() {
99     cd ..
100     pwd
101     zle reset-prompt
102 }
103 zle -N cddotdot
104 bindkey "\eOQ" cddotdot # F2
105
106 popdquiet() {
107     popd
108     zle reset-prompt
109 }
110 zle -N popdquiet
111 bindkey "\eOS" popdquiet # F4
112 # }}}
113
114 # Git {{{
115 alias Ga="git add"
116 alias Gb="git branch"
117 alias Gc="git checkout"
118 alias Gd="git diff"
119 alias Gdc="git diff --cached"
120 alias Gs="git show --show-signature"
121 alias Gm="git diff --name-only --diff-filter=M"
122 alias Gam="git commit --amend"
123 alias Gl="git log --oneline --graph --decorate=short"
124 alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'"
125
126 bindkey -s "\eOR" " git status --short\n" # F3
127 # }}}
128
129 # grep {{{
130 GREP_ARGS=(
131     --colour=always
132     --with-filename
133     --line-number
134     --dereference-recursive
135     --binary-files=without-match
136     --exclude-dir=.git
137     --exclude-dir=.tags
138 )
139 LESS_COLOURED=(less --RAW-CONTROL-CHARS)
140 g() {
141     grep $GREP_ARGS $@ | $LESS_COLOURED
142 }
143 GS() {
144     grep $GREP_ARGS $@ | sort --numeric-sort | $LESS_COLOURED
145 }
146 alias -g G="| grep --colour=always"
147 alias gg="git grep "
148 # }}}
149
150 # GPG agent {{{
151 export GPG_TTY=$(tty)
152 # }}}
153
154 # Mail {{{
155 mailpath=(
156     ~/mail/mbox"?Neue Nachrichten in =mbox"
157     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
158 )
159 alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
160 alias sent="mutt -f =sent-\`date '+%y-%m'\`"
161 bindkey -s "\eOP" " inc\n" # F1
162 # }}}
163
164 # Completion {{{
165 zstyle ":completion:*:functions" ignored-patterns "_*"
166 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
167 _mycomp () {
168     [[ ${words[1]} != man ]] || { _man && return 0 }
169     [[ $CURRENT -eq 1 ]] && _command_names || _files && return 0
170     # MAGIC_EQUAL_SUBST {{{
171     [[ $PREFIX = *\=* ]] || return 1
172     compstate[parameter]=${PREFIX%%\=*}
173     compset -P 1 "*="
174     _value
175     # }}}
176 }
177 zstyle ":completion:*" completer _mycomp _parameters
178 autoload -U compinit ; compinit -d /tmp/.zcompdump
179 zstyle ":completion:*:default" list-colors ""
180 autoload -U complist
181 # }}}
182
183 # Highlighting {{{
184 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
185 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
186 typeset -A ZSH_HIGHLIGHT_STYLES
187 ZSH_HIGHLIGHT_STYLES[assign]="fg=yellow"
188 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
189 ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold"
190 ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green"
191 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
192 ZSH_HIGHLIGHT_STYLES[global-alias]="fg=yellow,bold"
193 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
194 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
195 ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"
196 ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline"
197 # }}}
198
199 # Autosuggestion {{{
200 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
201 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
202 # }}}
203
204 # fzf {{{
205 cf() {
206     local dir=$(find -L ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
207         fzf --height 40% --reverse --preview="tree -CN {}")
208     [[ -z $dir ]] || { print -s cd $dir ; cd $dir }
209 }
210 # }}}
211
212 # Named directories {{{
213 while read w ; do
214     w=(${(s/=/)w})
215     hash -d ${w[1]}=${~${w[2]}}
216 done < ~/.zhashd
217 # }}}
218
219 # autoenv {{{
220 . ~/work/zsh-autoenv/autoenv.zsh
221 # }}}
222
223 # Virtualenv {{{
224 venv() {
225     . /usr/local/bin/virtualenvwrapper.sh
226 }
227 # }}}