diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-03-30 12:12:49 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-03-30 12:12:49 +0100 |
commit | 9a2ebe8e34e8be613da5e975b8a76e3b8ae7e215 (patch) | |
tree | 612db282ca020914bfcc087638766abf83b1e8ab /zshrc | |
parent | b7e66c07bc4d99f03c542a77ee5e7aa353dd16c3 (diff) | |
parent | 6fb28bc4b38947281908917b9230e78692674fdc (diff) |
resolved merge conflicts
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 24 |
1 files changed, 5 insertions, 19 deletions
@@ -10,9 +10,6 @@ ENABLE_CORRECTION="true" # Dots for completion COMPLETION_WAITING_DOTS="true" -# Would you like to use another custom folder than $ZSH/custom? -# ZSH_CUSTOM=/path/to/new-custom-folder - # Plugins plugins=(vi-mode git) @@ -44,7 +41,7 @@ alias ur='cd ~/Dropbox/phd/reports' alias up='cd ~/Dropbox/phd/presentations' alias papers='cd ~/Dropbox/phd/papers' alias books='cd ~/Dropbox/phd/books' -alias cdd='cd ~/dotfiles' +alias cdd='cd ~/Dropbox/dotfiles' # Commands alias tmux="TERM=screen-256color-bce tmux" @@ -65,6 +62,9 @@ alias upgrade='sudo apt-get upgrade' alias install='sudo apt-get install' alias remove='sudo apt-get autoremove' alias purge='sudo apt-get purge' +alias push='git push origin master' +alias pull='git pull origin master' +alias commit='git commit -a -m "auto-commit"' # Configuration alias ez='vim ~/.zshrc' @@ -80,19 +80,5 @@ alias ex='vim ~/.xmodmap' bindkey -a 'k' history-beginning-search-backward bindkey -a 'j' history-beginning-search-forward -# Colorscheme -# sleep 2 -# h=`date +%H` -# if [ $h -lt 9 ]; then -# xdotool key Alt+t p Down Right Return -# eval `dircolors ~/.solarized/dircolors-solarized/dircolors.ansi-dark` -# elif [ $h -lt 17 ]; then -# xdotool key Alt+t p Down Down Right Return -# eval `dircolors ~/.solarized/dircolors-solarized/dircolors.ansi-light` -# else -# xdotool key Alt+t p Down Right Return -# eval `dircolors ~/.solarized/dircolors-solarized/dircolors.ansi-dark` -# fi - # Crontab jobs -crontab ~/dotfiles/crontab +crontab ~/.crontab |