dotfiles/.bash_aliases

25 lines
565 B
Bash
Raw Normal View History

2014-01-21 21:22:32 +01:00
alias grep='grep --color'
alias l='ls -lhatr'
alias ls='ls --color=auto'
2014-01-22 11:33:35 +01:00
alias rm='rm -I'
2014-01-21 21:22:32 +01:00
# Git stuff
alias gdp='git diff --color HEAD^ HEAD'
alias gl='git log --pretty=format:"%Cgreen%h %Creset %s %Cgreenby %an (%ar) %Cred %d" --graph'
alias gdc='git diff --color'
# export standard terminal for remote connections
#alias ssh='export TERM=xterm && ssh'
2014-01-22 11:39:16 +01:00
if [ $(which ncal >/dev/null 2>&1) ]; then
2014-01-22 11:33:35 +01:00
alias cal='ncal -b -M -3'
else
alias cal='cal -m -3'
fi
2014-01-21 21:22:32 +01:00
alias hexdump='hexdump -c'
alias pwgen='pwgen -B -s'
# open multiple files in tabs
alias vim='vim -p'