]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zshrc
GnuPG keyring switcher aliases
[dotfiles.git] / zsh / .zshrc
1 # vim: foldmethod=marker:foldlevel=0
2
3 # Basic options {{{
4 setopt GLOB_STAR_SHORT GLOB_DOTS EXTENDED_GLOB
5 setopt NO_NOMATCH
6 setopt AUTO_PUSHD PUSHD_IGNORE_DUPS
7 setopt PIPE_FAIL
8 setopt MULTIBYTE
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     local state="%#" timer_val="?"
55     [[ ${KEYMAP} == vicmd ]] && state="+"
56     [[ $timer ]] && timer_val=$(( $SECONDS - $timer ))
57     prompt="%2~ "
58     prompt+="%U${timer_val}%u|"
59     prompt+="%B%?%b"
60     prompt+="%B%F{magenta}${state}%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 -D \"%Y-%m-%d %H:%M\" -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 -g T="| tai64nlocal"
84 alias -g DN=">/dev/null"
85 alias -g 2DN="2>/dev/null"
86 alias -g DNA=">&/dev/null"
87 alias mc="mc --nomouse"
88 alias gpgkr="gpg --no-default-keyring --keyring "
89
90 f() {
91     bfs . -name "*$1*" -print
92 }
93
94 alias ssh="TERM=xterm ssh"
95 alias sshnm="ssh -S none"
96 ssht() {
97     local t="-t 0"
98     TERM=xterm ssh -C -t $1 "tmux has-session $t && tmux attach-session $t || tmux new-session $t"
99 }
100
101 autoload -U zsh-mime-setup ; zsh-mime-setup
102 alias -s html=lynx
103
104 autoload -U zmv
105 # }}}
106
107 # Faster movement {{{
108 cddotdot() {
109     cd ..
110     pwd
111     zle reset-prompt
112 }
113 zle -N cddotdot
114 bindkey "\eOQ" cddotdot # F2
115
116 popdquiet() {
117     popd
118     zle reset-prompt
119 }
120 zle -N popdquiet
121 bindkey "\eOS" popdquiet # F4
122 # }}}
123
124 # Git {{{
125 alias Ga="git add"
126 alias Gb="git branch"
127 alias Gc="git checkout"
128 alias Gd="git diff"
129 alias Gdc="git diff --cached"
130 alias Gs="git show --show-signature"
131 alias Gm="git diff --name-only --diff-filter=M --relative"
132 alias Gam="git commit --amend"
133 alias Gl="git log --oneline --graph --decorate=short"
134 alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'"
135
136 bindkey -s "\eOR" " git status --short\n" # F3
137 # }}}
138
139 # grep {{{
140 GREP_ARGS=(
141     --devices=skip
142     --colour=always
143     --with-filename
144     --line-number
145     --dereference-recursive
146     --binary-files=without-match
147     --exclude-dir=.git
148     --exclude-dir=.tags
149 )
150 g() {
151     grep $GREP_ARGS $@ | less
152 }
153 alias -g G="| grep --colour=always"
154 alias gg="git grep "
155 # }}}
156
157 # GPG agent {{{
158 export GPG_TTY=$(tty)
159 # }}}
160
161 # Mail {{{
162 mailpath=(
163     ~/mail/mbox"?Neue Nachrichten in =mbox"
164     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
165 )
166 alias arr="mutt -f =arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
167 alias sent="mutt -f =sent-\`date '+%y-%m'\`"
168 bindkey -s "\eOP" " inc\n" # F1
169 # }}}
170
171 # Completion {{{
172 zstyle ":completion:*" list-colors ""
173
174 zstyle ":completion:*:functions" ignored-patterns "_*"
175 zstyle ":completion:*:manuals" separate-sections true
176
177 zstyle ":completion:*" group-name ""
178 zstyle ":completion:*:messages" format "%d"
179 zstyle ":completion:*:warnings" format "%F{red}no matches: %d%f"
180 zstyle ":completion:*:*:*:*:descriptions" format "%B... %d%b"
181 zstyle ":completion:*:files:*:*:descriptions" format ""
182
183 zstyle ":completion:*" file-patterns "%p:globbed" "*"
184 zstyle ":completion:*" matcher-list "" "m:{a-z-}={A-Z_}" "r:|?=** m:{a-z-}={A-Z_}"
185 zstyle ":completion:*:man:*:*:*" matcher-list "" "m:{a-zA-Z}={A-Za-z} l:|=* r:|=*"
186 zstyle ":completion:*" completer _mycomp _mycomp_man:man _parameters _ignored
187
188 _mycomp () {
189     [[ $CURRENT -eq 1 ]] && curcontext="${curcontext%:*:*}:-command-:" \
190         _command_names && return
191     [[ $IPREFIX =~ ~.* ]] && _tilde && return
192     local has_files
193     curcontext=:files:${curcontext#:*:} _files && has_files=1
194     [[ $has_files ]] && return
195
196     # MAGIC_EQUAL_SUBST {{{
197     [[ $PREFIX = *\=* ]] || return 1
198     compstate[parameter]=${PREFIX%%\=*}
199     compset -P 1 "*="
200     _value
201     # }}}
202 }
203
204 _mycomp_man () {
205     [[ ${words[1]} == man ]] && curcontext=:man:${curcontext#:*:} \
206         _dispatch "" man man "" -default- && _value && return
207     [[ ${words[1]} == info ]] && curcontext=:info:${curcontext#:*:} \
208         _dispatch "" info info "" -default- && return
209 }
210
211 autoload -U compinit ; compinit -d /tmp/.zcompdump
212 autoload -U complist
213 # }}}
214
215 # Highlighting {{{
216 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
217 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
218 typeset -A ZSH_HIGHLIGHT_STYLES
219 ZSH_HIGHLIGHT_STYLES[assign]="fg=yellow"
220 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
221 ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold"
222 ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green"
223 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
224 ZSH_HIGHLIGHT_STYLES[global-alias]="fg=yellow,bold"
225 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
226 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
227 ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"
228 ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline"
229 # }}}
230
231 # Autosuggestion {{{
232 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
233 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
234 # }}}
235
236 # fzf {{{
237 cf() {
238     local dir=$(bfs -L ${1:-.} -mindepth 1 \
239         -path "*/\.git" -prune -o \
240         -path "*/\.redo" -prune -o \
241         -type d -print 2>/dev/null |
242             fzf --height 40% --reverse --preview="tree -CN {}")
243     [[ -z $dir ]] || { print -s cd $dir ; cd $dir }
244 }
245 # }}}
246
247 # Named directories {{{
248 while read w ; do
249     w=(${(s/=/)w})
250     hash -d ${w[1]}=${~${w[2]}}
251 done < ~/.zhashd
252 # }}}
253
254 # Midnight commander extensions configuration {{{
255 [ -s $XDG_CONFIG_HOME/mc/mc.ext ] || {
256     mkdir $XDG_CONFIG_HOME/mc/
257     cp ~dot/mc/mc.ext $XDG_CONFIG_HOME/mc/
258 }
259 # }}}
260
261 # Virtualenv {{{
262 venv() {
263     . /usr/local/bin/virtualenvwrapper.sh
264 }
265 # }}}
266
267 # autoenv {{{
268 . ~/work/zsh-autoenv/autoenv.zsh
269 # }}}