]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zshrc
No on-data caches
[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
27 bindkey "^[[4~" end-of-line
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 ssh="TERM=xterm ssh"
80 alias vi="vim"
81 alias more="less"
82 alias m="less "
83 alias -g M="| less"
84 alias -g W="| wc -l | sed 's/ //g'"
85 alias mc="mc --nomouse"
86 alias sent="mutt -f =sent-\`date '+%y-%m'\`"
87
88 f() {
89     # find . -name "*$1*" -print
90     print -C 1 **$1*
91 }
92
93 ssht() {
94     ssh -C -t $1 tmux attach -t0
95 }
96 alias sshnm="ssh -S none"
97 # }}}
98
99 # Faster movement {{{
100 cddotdot() {
101     cd ..
102     pwd
103     zle reset-prompt
104 }
105 zle -N cddotdot
106 bindkey "\eOQ" cddotdot # F2
107
108 pushdquiet() {
109     popd
110     zle reset-prompt
111 }
112 zle -N pushdquiet
113 bindkey "\eOS" pushdquiet # F4
114 # }}}
115
116 # Git {{{
117 alias Ga="git add"
118 alias Gb="git branch"
119 alias Gc="git checkout"
120 alias Gd="git diff"
121 alias Gdc="git diff --cached"
122 alias Gs="git show --show-signature"
123 alias Gm="git diff --name-only --diff-filter=M"
124 alias Gam="git commit --amend"
125
126 alias Gl="git log --oneline --graph --decorate=short"
127 alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'"
128 alias Gr="git --no-pager log --oneline -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'"
129 alias Grr="git --no-pager log --oneline --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -"
130
131 bindkey -s "\eOR" " git status --short\n" # F3
132 # }}}
133
134 # grep {{{
135 GREP=/usr/local/bin/grep
136 GREP_ARGS="--color=always --with-filename --line-number --dereference-recursive"
137 LESS_COLORED="less --RAW-CONTROL-CHARS"
138 g() {
139     $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED}
140 }
141 GS() {
142     $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED}
143 }
144 alias -g G="| $GREP --color"
145 alias gg="git grep "
146 # }}}
147
148 # GPG agent {{{
149 GPG_TTY=$(tty)
150 export GPG_TTY
151 # }}}
152
153 # Virtualenv {{{
154 venv() {
155     . /usr/local/bin/virtualenvwrapper.sh
156 }
157 # }}}
158
159 # Mail {{{
160 mailpath=(
161     ~/mail/mbox"?Neue Nachrichten in =mbox"
162     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
163 )
164 alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
165 bindkey -s "\eOP" " inc\n" # F1
166 # }}}
167
168 # Completion {{{
169 zstyle ":completion:*:functions" ignored-patterns "_*"
170 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
171 _mycomp () {
172     [[ ${words[1]} != man ]] || { _man && return 0 }
173     [[ $CURRENT -eq 1 ]] && _command_names ||  _files && return 0
174     # MAGIC_EQUAL_SUBST {{{
175     [[ $PREFIX = *\=* ]] || return 1
176     compstate[parameter]=${PREFIX%%\=*}
177     compset -P 1 "*="
178     _value
179     # }}}
180 }
181 zstyle ":completion:*" completer _mycomp _parameters
182 autoload -U compinit ; compinit -d /tmp/.zcompdump
183 zstyle ":completion:*:default" list-colors ""
184 autoload -U complist
185 # }}}
186
187 # Highlighting {{{
188 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
189 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
190 typeset -A ZSH_HIGHLIGHT_STYLES
191 ZSH_HIGHLIGHT_STYLES[assign]="fg=yellow"
192 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
193 ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold"
194 ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green"
195 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
196 ZSH_HIGHLIGHT_STYLES[global-alias]="fg=yellow,bold"
197 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
198 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
199 ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"
200 ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline"
201 # }}}
202
203 # Autosuggestion {{{
204 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
205 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
206 # }}}
207
208 # fzf {{{
209 export FZF_DEFAULT_OPTS="--color=16 --info=inline"
210 cf() {
211     local dir=$(find ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
212         fzf --height 40% --reverse --preview="tree -CN {}")
213     [[ -z $dir ]] || cd $dir
214 }
215 # }}}
216
217 # Named directories {{{
218 while read w ; do
219     w=(${(s/=/)w})
220     hash -d ${w[1]}=${~${w[2]}}
221 done < ~/.zhashd
222 # }}}
223
224 # autoenv {{{
225 export AUTOENV_AUTH_FILE=~/.zautoenv-auth
226 . ~/work/zsh-autoenv/autoenv.zsh
227 # }}}