3 ### Zsh session things.
6 case ${INSIDE_EMACS+t},$TERM in t,dumb) unsetopt zle ;; esac
10 ###--------------------------------------------------------------------------
13 __mdw_set_prompt_hacks () {
15 linux*|screen*|xterm*|vt100*|eterm*)
17 gitcolour=%F{cyan} rccolour=%F{red} uncolour=%f
20 host=%m dir=" %(6~!%-1~/.../%5~!%~)"
24 __mdw_source_if_exists /usr/lib/git-core/git-sh-prompt
25 __mdw_set_prompt_pieces
26 precmd_functions+=(__mdw_precmd)
27 preexec_functions+=(__mdw_preexec)
30 ###--------------------------------------------------------------------------
36 forward-word backward-word kill-word backward-kill-word \
37 transpose-words capitalize-word up-case-word down-case-word \
38 delete-whole-word select-word
41 zle -N $w-bash $w-match
42 zle -N $w-shell $w-match
43 zstyle ':zle:*-bash' word-style standard
44 zstyle ':zle:*-bash' skip-whitespace-first true
45 zstyle ':zle:*-bash' word-chars ""
46 zstyle ':zle:*-shell' word-style shell
47 zstyle ':zle:*-shell' skip-whitespace-first false
50 bindkey "\eb" backward-word-bash
51 bindkey "\e^b" backward-word-shell
52 bindkey "\ef" forward-word-bash
53 bindkey "\e^f" forward-word-shell
54 bindkey "\e^?" backward-kill-word-bash
55 bindkey "^w" backward-kill-word-shell
56 bindkey "\ed" kill-word-bash
57 bindkey "\e^d" kill-word-shell
58 bindkey "\et" transpose-words-bash
59 bindkey "\e^t" transpose-words-shell
60 bindkey "\eu" up-case-word-bash
61 bindkey "\e^u" up-case-word-shell
62 bindkey "\el" up-case-word-bash
63 bindkey "\e^l" up-case-word-shell
64 bindkey "\ec" capitalize-word-bash
65 bindkey "\e^c" capitalize-word-shell
67 bindkey "\ep" history-beginning-search-backward
68 bindkey "\en" history-beginning-search-forward
70 setopt interactive_comments
71 bindkey "\e#" pound-insert
73 __mdw_delete_horizontal_space () {
74 LBUFFER=${LBUFFER%%[[:space:]]##}
75 RBUFFER=${RBUFFER##[[:space:]]##}
77 zle -N delete-horizontal-space __mdw_delete_horizontal_space
78 bindkey "\e\\" delete-horizontal-space
80 __mdw_just_one_space () {
81 LBUFFER="${LBUFFER%%[[:space:]]##} "
82 RBUFFER=${RBUFFER##[[:space:]]##}
84 zle -N just-one-space __mdw_just_one_space
85 bindkey "\e " just-one-space
87 ###--------------------------------------------------------------------------
90 ## Initialize the fancy completion machinery.
94 ## Contexts: :completion:FUNCTION:COMPLETER:COMMAND:ARGUMENT:TAG
95 zstyle ':completion:*' completer _expand _complete _ignored _approximate
96 zstyle ':completion:*' insert-unambiguous false
97 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
98 zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
99 zstyle ':completion:*' matcher-list '' '+m:{[:lower:]}={[:upper:]} r:|[._-]=** r:|=**' '+l:|=* r:|=*'
100 zstyle ':completion:*' max-errors 0 numeric
101 zstyle ':completion:*' original true
102 zstyle ':completion:*' verbose false
103 zstyle ':completion:*:*:git*:*' verbose true
105 _r () { words[1]=sudo; _normal; }
109 ###--------------------------------------------------------------------------
110 ### Other shell tweaking.
112 HISTFILE=~/.zsh-history
118 unsetopt bash_auto_list
121 unsetopt flow_control
122 setopt hist_ignore_all_dups
124 setopt list_ambiguous
127 unsetopt menu_complete
138 ###--------------------------------------------------------------------------
139 ### Finishing touches.
141 __mdw_source_if_exists "$HOME/.zshrc-local"
143 ###----- That's all, folks --------------------------------------------------