dotconfig/dot_zsh/setopt.zsh

30 lines
508 B
Bash

setopt nobeep
setopt interactivecomments
setopt extendedglob
# history
setopt appendhistory
setopt extendedhistory
setopt incappendhistory
setopt histexpiredupsfirst
setopt histignoredups
setopt histignorespace
setopt histfindnodups
setopt histreduceblanks
setopt histverify
setopt sharehistory
# completion
setopt alwaystoend
setopt automenu
unsetopt menucomplete
setopt autonamedirs
setopt completeinword
# correction
setopt correct
setopt correctall
CORRECT_IGNORE="[_|.]*"
# scripts
unsetopt multios