Zsh Utilities Settings

Zsh Utilities - Settings

This file provides some default settings for zsh (currently not so much).

Set extended globbing

setopt extended_glob

Disable autocorrect

unsetopt correct_all

Binding keys

Undo

bindkey '\C-z' undo

Move history search

# bind up and down arrow keys
zmodload zsh/terminfo
bindkey "$terminfo[kcuu1]" history-substring-search-up
bindkey "$terminfo[kcud1]" history-substring-search-down

For/backward word

bindkey "^[[1;3C" forward-word
bindkey "^[[1;3D" backward-word
File under version control - commit b7f7874 - 2014-11-07