52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
|
||
setopt interactivecomments # allow comments in interactive mode
|
||
setopt magicequalsubst # enable filename expansion for arguments of the form ‘anything=expression’
|
||
setopt nonomatch # hide error message if there is no match for the pattern
|
||
setopt notify # report the status of background jobs immediately
|
||
setopt numericglobsort # sort filenames numerically when it makes sense
|
||
setopt promptsubst # enable command substitution in prompt
|
||
setopt noflowcontrol # disable C-s mapping
|
||
setopt autocd
|
||
|
||
|
||
DIRSTACKSIZE=8
|
||
setopt autopushd
|
||
|
||
WORDCHARS=${WORDCHARS//\/} # Don't consider certain characters part of the word
|
||
|
||
# hide EOL sign ('%')
|
||
PROMPT_EOL_MARK=""
|
||
|
||
|
||
# Change cursor shape for different vi modes.
|
||
zle-keymap-select() {
|
||
if [[ ${KEYMAP} == vicmd ]] || [[ $1 = 'block' ]]; then
|
||
echo -ne '\e[2 q'
|
||
elif [[ ${KEYMAP} == main ]] || [[ ${KEYMAP} == viins ]] ||
|
||
[[ ${KEYMAP} = '' ]] || [[ $1 = 'beam' ]]; then
|
||
echo -ne '\e[5 q'
|
||
fi
|
||
}
|
||
|
||
zle -N zle-keymap-select
|
||
|
||
# Use beam shape cursor on startup.
|
||
echo -ne '\e[5 q'
|
||
|
||
_fix_cursor() {
|
||
echo -ne '\e[5 q'
|
||
}
|
||
|
||
precmd_functions+=(_fix_cursor)
|
||
|
||
# Set cursor style (DECSCUSR), VT520.
|
||
# 0 -> blinking block.
|
||
# 1 -> blinking block (default).
|
||
# 2 -> steady block.
|
||
# 3 -> blinking underline.
|
||
# 4 -> steady underline.
|
||
# 5 -> blinking bar, xterm.
|
||
# 6 -> steady bar, xterm.
|
||
|
||
|
||
zle_highlight=('paste:bg=24,fg=15', 'region:bg=24,fg=15') # colors of visual select |