]> jfr.im git - z_archive/shellstuff.git/blame - bashrc
Updated keys.
[z_archive/shellstuff.git] / bashrc
CommitLineData
0c8ad8a1
JR
1[ -z "$PS1" ] && return
2shopt -s checkwinsize
3
4#PS1='\[\033]0;\u@\h\007\]\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
5PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
6
7umask 0027
8
9eval "$(dircolors -b)"
10alias ls='ls --color=auto'
11alias grep='grep --color=auto'
12
13alias screen='screen -U'
14
15export PATH="$HOME/bin:$PATH"
16
17# For system-specific config (i.e. readmail alias on mailserver)
18if [ -f $HOME/.bashrc_local ]; then
19 source $HOME/.bashrc_local
20fi