]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zshrc
F4/F5 directory movement
[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
9 setopt RM_STAR_SILENT
10 export LISTMAX=9999
11 # }}}
12
13 # History options {{{
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)"
17 # }}}
18
19 # Vi mode {{{
20 bindkey -v
21 export KEYTIMEOUT=1
22 # }}}
23
24 # Home/end {{{
25 bindkey "^[[1~" beginning-of-line
26 bindkey "^[[4~" end-of-line
27 # }}}
28
29 # Command-line editing {{{
30 autoload -U edit-command-line
31 zle -N edit-command-line
32 bindkey -M vicmd v edit-command-line
33 # }}}
34
35 # History search {{{
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
41
42 beginning-history-incremental-pattern-search-backward() {
43     zle history-incremental-pattern-search-backward $(echo $BUFFER | sed "s/ /*/g")
44 }
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
49 # }}}
50
51 # URL quoting {{{
52 autoload -U url-quote-magic
53 autoload -U bracketed-paste-magic
54 zle -N self-insert url-quote-magic
55 zle -N bracketed-paste bracketed-paste-magic
56 # }}}
57
58 # Prompt {{{
59 function zle-line-init zle-keymap-select {
60     mode_vi="${${KEYMAP/vicmd/+}/(main|viins)/-}"
61     [ $timer ] && timer_show=$(( $SECONDS - $timer ))
62     prompt="%2~|"
63     prompt+="%U${timer_show}%u|"
64     prompt+="%B%?%b"
65     prompt+="${mode_vi}"
66     prompt+="%B%F{magenta}%#%f%b "
67     PS1="$prompt"
68     zle reset-prompt
69 }
70 zle -N zle-line-init
71 zle -N zle-keymap-select
72
73 preexec() {
74     timer=$SECONDS
75 }
76
77 precmd() {
78     printf "\a\033]2;\033\\"
79 }
80 # }}}
81
82 # Aliases {{{
83 alias l="ls -AF "
84 alias ll="ls -AFl "
85 alias ssh="TERM=xterm ssh"
86 alias vi="vim"
87 alias more="less"
88 alias m="less "
89 alias -g M="| less"
90 alias -g W="| wc -l"
91 alias mc="mc --nomouse"
92
93 f() {
94     # find . -name "*$1*" -print
95     print -C 1 **$1*
96 }
97
98 ssht() {
99     ssh -C -t "$1" tmux attach -t0
100 }
101 alias sshnm="ssh -S none"
102 # }}}
103
104 # Faster movement {{{
105 pushdquiet() {
106     popd >/dev/null
107     zle reset-prompt
108 }
109 zle -N pushdquiet
110 bindkey "\eOS" pushdquiet # F4
111
112 cddotdot() {
113     cd ..
114     zle reset-prompt
115 }
116 zle -N cddotdot
117 bindkey "\e[15~" cddotdot # F5
118 # }}}
119
120 # Git {{{
121 alias Ga="git add"
122 alias Gb="git branch"
123 alias Gc="git checkout"
124 alias Gd="git diff"
125 alias Gs="git show"
126 alias Gm="git diff --name-only --diff-filter=M"
127 alias Gam="git commit --amend"
128
129 git_common="--oneline --abbrev-commit"
130 alias Gl="git log $git_common --graph --decorate=short"
131 alias Gr="git --no-pager log $git_common -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'"
132 alias Grr="git --no-pager log $git_common --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -"
133
134 bindkey -s "\eOQ" " git status\n" # F2
135 bindkey -s "\eOR" " git status --short\n" # F3
136 # }}}
137
138 # grep {{{
139 GREP=/usr/local/bin/grep
140 GREP_ARGS="--color=always --with-filename --line-number --recursive"
141 LESS_COLORED="less --RAW-CONTROL-CHARS"
142 g() {
143     $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED}
144 }
145 GS() {
146     $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED}
147 }
148 alias -g G="| $GREP --color"
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 rss="mutt -f \=rss"
170 bindkey -s "\eOP" " inc\n" # F1
171 # }}}
172
173 # Calculator {{{
174 autoload -U zcalc
175 alias zc="zcalc"
176 # }}}
177
178 # Named directories {{{
179 . ~/.zhashd
180 # }}}
181
182 # Completion {{{
183 zstyle ":completion:*:functions" ignored-patterns "_*"
184 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
185 _mycomp () {
186     [ "$words[1]" != "man" ] || { _man && return 0 }
187     [ $CURRENT -eq 1 ] && _command_names ||  _files && return 0
188     # MAGIC_EQUAL_SUBST {{{
189     [[ "$PREFIX" = *\=* ]] || return 1
190     compstate[parameter]="${PREFIX%%\=*}"
191     compset -P 1 "*="
192     _value
193     # }}}
194 }
195 zstyle ":completion:*" completer _mycomp _parameters
196 autoload -U compinit ; compinit -d /tmp/.zcompdump
197 zstyle ":completion:*:default" list-colors ""
198 autoload -U complist
199 # }}}
200
201 # Highlighting {{{
202 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
203 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
204 typeset -A ZSH_HIGHLIGHT_STYLES
205 ZSH_HIGHLIGHT_STYLES[assign]="fg=cyan"
206 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
207 ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold"
208 ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green"
209 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
210 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
211 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
212 ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"
213 ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline"
214 # }}}
215
216 # Autosuggestion {{{
217 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
218 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
219 # }}}