Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 878 Bytes

zsh-utilities-settings.org

File metadata and controls

39 lines (35 loc) · 878 Bytes

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

zsh autosuggestions default colors

ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=white"