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