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