dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 757bb40435fafafbb5054494bc55d049f8af4044
parent 94f8961bea157880c5b69e9d8133b65dc42362e0
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Fri,  3 Jan 2014 16:53:51 +0100

Fixed error in home/bin, added git add alias

Diffstat:
M.zshrc | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.zshrc b/.zshrc @@ -1,4 +1,4 @@ -source /home/adc/code/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +source ./code/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh autoload -U compinit promptinit colors compinit @@ -20,8 +20,6 @@ export HISTFILE="${HOME}"/.zsh-history export HISTSIZE=1000000 export SAVEHIST=$HISTSIZE -plugins=(git) - zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} zstyle ':completion:*' list-colors 'reply=( "=(#b)(*$VAR)(?)*=00=$color[green]=$color[bg-green]" )' zstyle ':completion:*:*:*:*:hosts' list-colors '=*=30;41' @@ -40,6 +38,7 @@ function fname() { find . -iname "*$@*"; } alias svim='sudoedit' alias gs='git status' +alias ga='git add' alias gc='git commit' alias gp='git push' alias gcgp='git commit && git push' @@ -69,9 +68,10 @@ alias lla='ls -lA' alias l='ls -CF' # enable color support of ls and also add handy aliases -alias ls='ls --color=auto' -alias dir='dir --color=auto' -alias vdir='vdir --color=auto' +#alias ls='ls --color=auto' +alias ls='ls -G' +#alias dir='dir --color=auto' +#alias vdir='vdir --color=auto' alias grep='grep --color=auto' alias fgrep='fgrep --color=auto' alias egrep='egrep --color=auto' @@ -95,4 +95,4 @@ export EDITOR="vim" export XDG_CONFIG_HOME="/home/adc/.config" # Environment variables -export PATH=/home/adc/bin:$PATH +export PATH=$HOME/bin:$PATH