diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 14:20:07 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 14:20:07 +0100 |
commit | 0348653923240517494b59d4c1bf01116bba7a11 (patch) | |
tree | 1340b50d65f7d60d1d1c6c9647abb84db358d70c /.zsh/zshrc | |
parent | e4bbf8e944397a7b7ad2d8e37729c323017ec79d (diff) |
Important options
Diffstat (limited to '.zsh/zshrc')
-rw-r--r-- | .zsh/zshrc/00_opts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.zsh/zshrc/00_opts b/.zsh/zshrc/00_opts new file mode 100644 index 0000000..aadce9e --- /dev/null +++ b/.zsh/zshrc/00_opts @@ -0,0 +1,17 @@ +# zshrc/00_opts +# +# Set up important options +# +# Copyright © 2011 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +# if a command is issued that can't be executed as a normal command, and the +# command is the name of a directory, perform the cd command to that directory +setopt auto_cd + +# Silence! +setopt nobeep + +# vim:ft=zsh |