diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-28 23:52:37 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-28 23:52:37 +0200 |
commit | e8fcd836f2c4a528b2f4e580b3d6db5efdfc1ab6 (patch) | |
tree | f2bbc6784becf64cdcf11e73de16e647c052ba04 /etc/options | |
parent | 8896ac675b5bf513074d7552da7d9f4cf8d16217 (diff) |
auditing. Little cleanup, minor fixes etc.
Diffstat (limited to 'etc/options')
-rw-r--r-- | etc/options | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/etc/options b/etc/options index 977e993..28b3654 100644 --- a/etc/options +++ b/etc/options @@ -1,19 +1,27 @@ ## 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 + +# 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 + # Alert me in case of non-zero exit status setopt print_exit_value + # Accidently hitting ^s sucks (alternative: `stty -ixon`) unsetopt flow_control -# And having to escape "!" everytime does, too + +# And having to escape "!" everytime does, too (plus, I like ^r more) unsetopt bang_hist + unsetopt beep |