From 486d4e8fe94727b8eba398f6f820815a108f30be Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Sat, 13 Jun 2015 02:49:22 +0200 Subject: [PATCH] Cleanups --- .zshrc | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.zshrc b/.zshrc index 9d8c96ca..1b379d11 100644 --- a/.zshrc +++ b/.zshrc @@ -1,27 +1,29 @@ +# Extend my $PATH to $PATH/bin +export PATH=$PATH:$HOME/bin + +# Now source some stuff that should not be public +source ~/.zshprivate + # History settings HISTSIZE=100000 SAVEHIST=100000 HISTFILE=~/.zsh_history -# Source some stuff that should not be public -source ~/.zshprivate - export EDITOR=vim +# Some aliases +alias ..='cd ..' +alias ...='cd ../..' +alias ....='cd ../../..' +alias .....='cd ../../../..' alias l='ls --color' alias ls='ls --color' alias lsa='ls -a --color' alias ll='ls --color -l' alias lla='ls -la --color' alias lsd='ls -ld --color' - alias xterm='uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange' -alias ..='cd ..' -alias ...='cd ../..' -alias ....='cd ../../..' -alias .....='cd ../../../..' - # Set up the Zsh setopt extendedhistory setopt histignoredups