]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zshrc
Yet another alternate F-helpers
[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 cddotdot() {
106     cd ..
107     zle reset-prompt
108 }
109 zle -N cddotdot
110 bindkey "\eOQ" cddotdot # F2
111
112 pushdquiet() {
113     popd >/dev/null
114     zle reset-prompt
115 }
116 zle -N pushdquiet
117 bindkey "\eOS" pushdquiet # F4
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 "\eOR" " git status --short\n" # F3
135 # }}}
136
137 # grep {{{
138 GREP=/usr/local/bin/grep
139 GREP_ARGS="--color=always --with-filename --line-number --recursive"
140 LESS_COLORED="less --RAW-CONTROL-CHARS"
141 g() {
142     $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED}
143 }
144 GS() {
145     $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED}
146 }
147 alias -g G="| $GREP --color"
148 alias gg="git grep "
149 # }}}
150
151 # GPG agent {{{
152 GPG_TTY=$(tty)
153 export GPG_TTY
154 # }}}
155
156 # Virtualenv {{{
157 venv() {
158     . /usr/local/bin/virtualenvwrapper.sh
159 }
160 # }}}
161
162 # Mail {{{
163 mailpath=(
164     ~/mail/mbox"?Neue Nachrichten in =mbox"
165     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
166 )
167 alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
168 alias rss="mutt -f \=rss"
169 bindkey -s "\eOP" " inc\n" # F1
170 # }}}
171
172 # Calculator {{{
173 autoload -U zcalc
174 alias zc="zcalc"
175 # }}}
176
177 # Named directories {{{
178 . ~/.zhashd
179 # }}}
180
181 # Completion {{{
182 zstyle ":completion:*:functions" ignored-patterns "_*"
183 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
184 _mycomp () {
185     [ "$words[1]" != "man" ] || { _man && return 0 }
186     [ $CURRENT -eq 1 ] && _command_names ||  _files && return 0
187     # MAGIC_EQUAL_SUBST {{{
188     [[ "$PREFIX" = *\=* ]] || return 1
189     compstate[parameter]="${PREFIX%%\=*}"
190     compset -P 1 "*="
191     _value
192     # }}}
193 }
194 zstyle ":completion:*" completer _mycomp _parameters
195 autoload -U compinit ; compinit -d /tmp/.zcompdump
196 zstyle ":completion:*:default" list-colors ""
197 autoload -U complist
198 # }}}
199
200 # Highlighting {{{
201 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
202 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
203 typeset -A ZSH_HIGHLIGHT_STYLES
204 ZSH_HIGHLIGHT_STYLES[assign]="fg=cyan"
205 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
206 ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold"
207 ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green"
208 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
209 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
210 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
211 ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"
212 ZSH_HIGHLIGHT_STYLES[path_pathseparator]="fg=white,bold,underline"
213 # }}}
214
215 # Autosuggestion {{{
216 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
217 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
218 # }}}