diff options
author | Starfall <us@starfall.systems> | 2020-07-18 20:56:30 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2020-07-22 14:36:08 -0500 |
commit | c72469f29f9d27d04b3cc124788b7a063ab43c46 (patch) | |
tree | 78538c75706105c40163895e4988e056e5cf12f6 /.config | |
parent | 1715a5a3ae6aca2fa81e497fa085ac1edbf32045 (diff) |
zsh: remove options that are set by default
Diffstat (limited to '.config')
-rw-r--r-- | .config/zsh/.zshrc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index ad61c01..fda6c62 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -2,9 +2,6 @@ setopt autocd export CDPATH=".:$HOME:$HOME/devil:$HOME/src" -# use multiple redirections to imply tee / cat -setopt multios - # spelling correction... TBA if we like this # could also use correct_all & potentially alias some things with nocorrect setopt correct @@ -31,7 +28,6 @@ autoload -Uz compinit && compinit HISTFILE="$HOME/.zsh_history" HISTSIZE=10000 SAVEHIST=$HISTSIZE -setopt bang_hist setopt extended_history # write timestamp setopt inc_append_history # write always, not just at end of session setopt hist_ignore_space # add leading space to hide from history |