home: zsh: put further customization in files
I like the editing experience better when using dedicated files for this
This commit is contained in:
parent
7c2430bb47
commit
d4dd67fab4
3 changed files with 46 additions and 45 deletions
12
home/zsh/options.zsh
Normal file
12
home/zsh/options.zsh
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Show an error when a globbing expansion doesn't find any match
|
||||
setopt nomatch
|
||||
# List on ambiguous completion and Insert first match immediately
|
||||
setopt autolist menucomplete
|
||||
# Use pushd when cd-ing around
|
||||
setopt autopushd pushdminus pushdsilent
|
||||
# Use single quotes in string without the weird escape tricks
|
||||
setopt rcquotes
|
||||
# Single word commands can resume an existing job
|
||||
setopt autoresume
|
||||
# Those options aren't wanted
|
||||
unsetopt beep extendedglob notify
|
||||
Loading…
Add table
Add a link
Reference in a new issue