dot/zshrc: Include parser content in the second-level prompt.
[profile] / dot / zshrc
CommitLineData
a797cf50
MW
1### -*-sh-*-
2###
3### Zsh session things.
4
5__mdw_shell=zsh
6case ${INSIDE_EMACS+t},$TERM in t,dumb) unsetopt zle ;; esac
7
8. "$HOME/.shell-rc"
9
10###--------------------------------------------------------------------------
11### Prompt hacking.
12
13__mdw_set_prompt_hacks () {
14 case $TERM in
15 linux*|screen*|xterm*|vt100*|eterm*)
16 bold=%B unbold=%b
17 gitcolour=%F{cyan} rccolour=%F{red} uncolour=%f
18 ;;
19 esac
20 host=%m dir=" %(6~!%-1~/.../%5~!%~)"
778e2af4 21 more=%F{green}%_%f
a797cf50
MW
22}
23
24if [ -t 0 ]; then
25 __mdw_source_if_exists /usr/lib/git-core/git-sh-prompt
26 __mdw_set_prompt_pieces
27 precmd_functions+=(__mdw_precmd)
28 preexec_functions+=(__mdw_preexec)
29fi
30
31###--------------------------------------------------------------------------
32### Line editing.
33
dbd3e351
MW
34case $TERM in dumb) unsetopt zle ;; esac
35
a797cf50
MW
36bindkey -e
37
d7b20e5c
MW
38for w in \
39 forward-word backward-word kill-word backward-kill-word \
40 transpose-words capitalize-word up-case-word down-case-word \
41 delete-whole-word select-word
42do
43 autoload -U $w-match
44 zle -N $w-bash $w-match
45 zle -N $w-shell $w-match
46 zstyle ':zle:*-bash' word-style standard
47 zstyle ':zle:*-bash' skip-whitespace-first true
48 zstyle ':zle:*-bash' word-chars ""
49 zstyle ':zle:*-shell' word-style shell
50 zstyle ':zle:*-shell' skip-whitespace-first false
51done
52
53bindkey "\eb" backward-word-bash
54bindkey "\e^b" backward-word-shell
55bindkey "\ef" forward-word-bash
56bindkey "\e^f" forward-word-shell
57bindkey "\e^?" backward-kill-word-bash
58bindkey "^w" backward-kill-word-shell
59bindkey "\ed" kill-word-bash
60bindkey "\e^d" kill-word-shell
61bindkey "\et" transpose-words-bash
62bindkey "\e^t" transpose-words-shell
63bindkey "\eu" up-case-word-bash
64bindkey "\e^u" up-case-word-shell
e3674277
MW
65bindkey "\el" down-case-word-bash
66bindkey "\e^l" down-case-word-shell
d7b20e5c
MW
67bindkey "\ec" capitalize-word-bash
68bindkey "\e^c" capitalize-word-shell
69
eda14eb9
MW
70bindkey "\ep" history-beginning-search-backward
71bindkey "\en" history-beginning-search-forward
72
a897ee2c
MW
73setopt interactive_comments
74bindkey "\e#" pound-insert
75
c510f8b9
MW
76__mdw_delete_horizontal_space () {
77 LBUFFER=${LBUFFER%%[[:space:]]##}
78 RBUFFER=${RBUFFER##[[:space:]]##}
79}
80zle -N delete-horizontal-space __mdw_delete_horizontal_space
81bindkey "\e\\" delete-horizontal-space
82
83__mdw_just_one_space () {
84 LBUFFER="${LBUFFER%%[[:space:]]##} "
85 RBUFFER=${RBUFFER##[[:space:]]##}
86}
87zle -N just-one-space __mdw_just_one_space
88bindkey "\e " just-one-space
89
a797cf50
MW
90###--------------------------------------------------------------------------
91### Completion.
92
a797cf50
MW
93## Contexts: :completion:FUNCTION:COMPLETER:COMMAND:ARGUMENT:TAG
94zstyle ':completion:*' completer _expand _complete _ignored _approximate
95zstyle ':completion:*' insert-unambiguous false
96zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
97zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
98zstyle ':completion:*' matcher-list '' '+m:{[:lower:]}={[:upper:]} r:|[._-]=** r:|=**' '+l:|=* r:|=*'
99zstyle ':completion:*' max-errors 0 numeric
100zstyle ':completion:*' original true
101zstyle ':completion:*' verbose false
102zstyle ':completion:*:*:git*:*' verbose true
103
818cdbb4
MW
104## Initialize the fancy completion machinery.
105autoload -Uz compinit
106compinit
107
a797cf50
MW
108_r () { words[1]=sudo; _normal; }
109compdef _r rootly
110compdef _ssh @
111
112###--------------------------------------------------------------------------
113### Other shell tweaking.
114
115HISTFILE=~/.zsh-history
116HISTSIZE=1000
117SAVEHIST=1000
118
a797cf50
MW
119unsetopt auto_cd
120unsetopt auto_menu
cba93353 121setopt bang_hist
a797cf50
MW
122unsetopt bash_auto_list
123unsetopt beep
124setopt extendedglob
f00452f2 125unsetopt flow_control
e3c70a77 126setopt hist_ignore_all_dups
68d1e406 127setopt hist_ignore_space
a797cf50
MW
128setopt ksh_glob
129setopt list_ambiguous
130setopt list_packed
043b866b 131setopt multios
a797cf50
MW
132unsetopt nomatch
133unsetopt menu_complete
134setopt notify
043b866b 135setopt rc_expand_param
e3c70a77 136setopt share_history
a797cf50 137
a797cf50
MW
138###--------------------------------------------------------------------------
139### Finishing touches.
140
141__mdw_source_if_exists "$HOME/.zshrc-local"
142
143###----- That's all, folks --------------------------------------------------