diff options
| author | 2020-02-14 19:11:04 -0500 | |
|---|---|---|
| committer | 2020-02-14 19:11:04 -0500 | |
| commit | 858a4a31a251d0eab21dffb96776aca007dafb07 (patch) | |
| tree | 54d0b73cab4eb4bc6c023ad4a75a5de0e724ed1f /source/options.zsh | |
Squashed 'dot_local/share/toasty/' content from commit aee4da7
git-subtree-dir: dot_local/share/toasty
git-subtree-split: aee4da752bdb07b0524bb8803ead46d4093fa57f
Diffstat (limited to 'source/options.zsh')
| -rw-r--r-- | source/options.zsh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/source/options.zsh b/source/options.zsh new file mode 100644 index 0000000..0f6d0f6 --- /dev/null +++ b/source/options.zsh @@ -0,0 +1,36 @@ +# changing directories +setopt autocd +setopt noautopushd +setopt pushdignoredups +setopt pushdtohome + +# completion +setopt alwaystoend + +# expansion and globbing + +# history +setopt histexpiredupsfirst +setopt histignoredups +setopt histignorespace +setopt histverify +setopt incappendhistory + +# initialization +setopt noallexport + +# i/o +setopt noflowcontrol +setopt interactivecomments + +# job control +setopt longlistjobs + +# prompting +setopt promptsubst +# setopt transientrprompt ? + +# scripts and functions + +# shell emulation +setopt bsdecho |
