]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zshrc
Be silent about mass removing
[dotfiles.git] / zsh / .zshrc
1 # vim: foldmethod=marker:foldlevel=0
2
3 # Basic options {{{
4 setopt APPEND_HISTORY SHARE_HISTORY INC_APPEND_HISTORY HIST_IGNORE_ALL_DUPS
5 setopt HIST_IGNORE_SPACE
6 setopt INTERACTIVE_COMMENTS
7 setopt GLOB_STAR_SHORT GLOB_DOTS EXTENDED_GLOB
8 setopt NO_NOMATCH
9 setopt AUTO_PUSHD PUSHD_IGNORE_DUPS
10
11 setopt RM_STAR_SILENT
12 export LISTMAX=9999
13 # }}}
14
15 # Vi mode {{{
16 bindkey -v
17 export KEYTIMEOUT=1
18 # }}}
19
20 # Home/end {{{
21 bindkey "^[[1~" beginning-of-line
22 bindkey "^[[4~" end-of-line
23 # }}}
24
25 # Command-line editing {{{
26 autoload -U edit-command-line
27 zle -N edit-command-line
28 bindkey -M vicmd v edit-command-line
29 # }}}
30
31 # History search {{{
32 autoload -U history-search-end
33 zle -N history-beginning-search-backward-end history-search-end
34 zle -N history-beginning-search-forward-end history-search-end
35 bindkey "^[[A" history-beginning-search-backward-end
36 bindkey "^[[B" history-beginning-search-forward-end
37 bindkey "^R" history-incremental-search-backward
38 # }}}
39
40 # Prompt {{{
41 function zle-line-init zle-keymap-select {
42     mode_vi="${${KEYMAP/vicmd/+}/(main|viins)/-}"
43     [ $timer ] && timer_show=$(( $SECONDS - $timer ))
44     prompt="%2~|"
45     prompt+="%U${timer_show}%u|"
46     prompt+="%B%?%b"
47     prompt+="${mode_vi}"
48     prompt+="%F{magenta}%#%f "
49     PS1="$prompt"
50     zle reset-prompt
51 }
52 zle -N zle-line-init
53 zle -N zle-keymap-select
54
55 preexec() {
56     timer=$SECONDS
57 }
58
59 precmd() {
60     print -n "\a"
61 }
62 # }}}
63
64 # Tmux pane name {{{
65 CTP()
66 {
67     printf "\033]2;\033\\"
68 }
69 CTP
70 # }}}
71
72 # Aliases {{{
73 alias l="ls -AF "
74 alias ll="ls -AFl "
75 alias ssh="TERM=xterm ssh"
76 alias vi="vim"
77 alias more="less"
78 alias m="less "
79 alias -g M="| less"
80 alias mc="mc --nomouse ; CTP"
81 bindkey -s "\eOS" " popd\n" # F4
82
83 f() {
84     # find . -name "*$1*" -print
85     print -C 1 **$1*
86 }
87
88 ssht() {
89     ssh -C -t "$1" tmux attach -t0
90 }
91 alias sshnm='ssh -S none'
92 # }}}
93
94 # Git {{{
95 alias Ga="git add"
96 alias Gb="git branch"
97 alias Gc="git checkout"
98 alias Gd="git diff"
99 alias Gs="git show"
100 alias Gm="git diff --name-only --diff-filter=M"
101 alias Gam="git commit --amend"
102 alias -g W="| wc -l"
103
104 git_common="--oneline --abbrev-commit"
105 alias Gl="git log $git_common --graph --decorate=short"
106 alias Gr="git --no-pager log $git_common -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'"
107 alias Grr="git --no-pager log $git_common --graph -n 1024 | vi -c 'e ++enc=utf8' -"
108 alias Grpck="git gc --prune=now ; git repack -a -d --depth=4095 --window=10240"
109
110 bindkey -s "\eOQ" " git status\n" # F2
111 bindkey -s "\eOR" " git status --short\n" # F3
112 # }}}
113
114 # grep {{{
115 GREP=/usr/local/bin/grep
116 GREP_ARGS="--color=always --with-filename --line-number --recursive"
117 LESS_COLORED="less --RAW-CONTROL-CHARS"
118 g() {
119     $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED}
120 }
121 GS() {
122     $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED}
123 }
124 alias -g G="| $GREP --color"
125 alias gg="git grep "
126 # }}}
127
128 # GPG agent {{{
129 GPG_TTY=$(tty)
130 export GPG_TTY
131 # }}}
132
133 # Virtualenv {{{
134 venv() {
135     . /usr/local/bin/virtualenvwrapper.sh
136 }
137 # }}}
138
139 # Mail {{{
140 mailpath=(
141     ~/mail/mbox"?Neue Nachrichten in =mbox"
142     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
143 )
144 alias arr="mutt -f =arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
145 alias rss="mutt -f =rss"
146 bindkey -s "\eOP" " inc\n" # F1
147 # }}}
148
149 # Calculator {{{
150 autoload -U zcalc
151 alias zc="zcalc"
152 # }}}
153
154
155 # Completion {{{
156 zstyle ":completion:*:functions" ignored-patterns "_*"
157 zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}'
158 _mycomp () {
159     [ $CURRENT -eq 1 ] && _command_names || _files
160 }
161 zstyle ":completion:*" completer _mycomp _parameters
162 autoload -U compinit ; compinit -d /tmp/.zcompdump
163 zstyle ":completion:*:default" list-colors ""
164 autoload -U complist
165 # }}}
166
167 # Highlighting {{{
168 ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
169 . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
170 typeset -A ZSH_HIGHLIGHT_STYLES
171 ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta"
172 ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta"
173 ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red"
174 ZSH_HIGHLIGHT_STYLES[redirection]="fg=red"
175 ZSH_HIGHLIGHT_STYLES[assign]="fg=cyan"
176 # }}}
177
178 # Autosuggestion {{{
179 . ~/work/zsh-autosuggestions/zsh-autosuggestions.zsh
180 ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=6"
181 # }}}
182