]> git.draconx.ca Git - zshconf.git/blobdiff - zshrc
Enable extended globs by default.
[zshconf.git] / zshrc
diff --git a/zshrc b/zshrc
index 7f0df9b58325633da05750e0dbbc746e5ce73feb..b61eb5c77545d159f08bf13398f38aca9de3b546 100644 (file)
--- a/zshrc
+++ b/zshrc
@@ -7,6 +7,9 @@
 # notice and this notice are preserved.  This file is offered as-is,
 # without any warranty.
 
+# Default shell options
+setopt EXTENDED_GLOB
+
 if [[ -n $HOME ]]; then
        HISTFILE=$HOME/.zsh_history
        SAVEHIST=10000
@@ -107,3 +110,8 @@ alias grep='grep --color=auto'
 alias mv='mv -i'
 alias rm='rm -i'
 alias cp='cp -i'
+
+# Common aliases
+alias vv='$EDITOR ~/.zshrc && source ~/.zshrc'
+alias ll='ls -l'
+alias lr='ls -rtl'