ll alias
[dotfiles.git] / zsh / .zshrc
index c6cb5db3b7177fbd9f2b56f44b8c2a814185123c..b556bade67f281c0fa52cd3d0f40665ef29365e3 100755 (executable)
@@ -24,24 +24,34 @@ WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
 #Allow bash-style comments
 setopt interactivecomments
 
-export EDITOR='nano'
+export EDITOR='vim'
 
 # Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd")
-HIST_STAMPS="dd.mm.yyy"
+HIST_STAMPS="dd.mm.yyyy"
 
 DISABLE_UNTRACKED_FILES_DIRTY="true"
 
+# plugins can be found in ~/.oh-my-zsh/plugins/*
+plugins=(git)
+
+# load zmv
+autoload -U zmv
+
+mkcd() {
+  mkdir "$1"
+  cd "$1"
+}
+
 # ---
 # Appearance
 # ---
 ZSH_THEME="agnoster"
 COMPLETION_WAITING_DOTS="true"
 
-# Would you like to use another custom folder than $ZSH/custom?
-# ZSH_CUSTOM=/path/to/new-custom-folder
-
 # plugins can be found in ~/.oh-my-zsh/plugins/*
 plugins=(git)
 
 source $ZSH/oh-my-zsh.sh
 
+# ls -l alias
+alias ll="ls -l"