diff options
Diffstat (limited to 'etc/options')
-rw-r--r-- | etc/options | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/etc/options b/etc/options new file mode 100644 index 0000000..4e4f636 --- /dev/null +++ b/etc/options @@ -0,0 +1,17 @@ +## Some useful options, see zshoptions(1) +## vim:ft=zsh +# Automatically use 'pushd' when cd'ing into a directory +# so I can use popd or 'cd -1' to get back where I came from. +# And don't print the stack everytime using popd. +setopt auto_pushd pushd_ignore_dups pushd_minus pushd_silent +# enter "foobar/" to cd foobar, and "derf" to cd ~derf +setopt auto_cd cdable_vars +# Try to correct typos in command names +setopt correct +# echo 'foo''bar''' will become foo'bar' +setopt rc_quotes +# Accidently hitting ^s sucks (alternative: `stty -ixon`) +unsetopt flow_control +# And having to escape "!" everytime does, too +unsetopt bang_hist +unsetopt beep |