PS1 overhaul.
[profile.git] / .profile.d / aliases.bashrc
1 grep -V 2>/dev/null | grep GNU >/dev/null && alias grep='grep --color=auto'
2 alias knh='kill_known_host'
3 alias l='ls'
4 alias ls='/bin/ls $LS_OPTIONS'
5 if which vim 2>/dev/null | grep ^/ >/dev/null; then
6   alias vim='vim +syn\ on'
7   alias vi='vim'
8 fi
9 if which krenew 2>/dev/null | grep ^/ >/dev/null; then
10   alias kscreen='krenew --'
11 else
12   alias kscreen=''
13 fi
14 alias debug='valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=5 --verbose --time-stamp=yes --track-fds=yes'
15 alias session='bigscreen -rx -S session || kscreen bigscreen -S session'
16 alias svnfind='find . -type f ! -path "*/.svn/*"'