Skip to content

Commit

Permalink
bashrc compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhalter committed Sep 4, 2013
1 parent 049eddb commit 835ab13
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .bashrc.local
Expand Up @@ -22,9 +22,13 @@ alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

alias terminal='gnome-terminal &'
if test $(type -p gnome-terminal) != '' ; then
alias terminal='gnome-terminal &'
fi

alias vi='vim -p'
if test $(type -p vim) != '' ; then
alias vi='vim -p'
fi

# git aliases
alias gc='git commit'
Expand Down

0 comments on commit 835ab13

Please sign in to comment.