summaryrefslogtreecommitdiffstats
path: root/.bashrc
blob: eb2a61f989d341a0be36164058fb1b8c9d129a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# ~/.bashrc
#

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

# alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '

if [ -f ~/.bash_aliases ]; then
	. ~/.bash_aliases
fi

export VISUAL=vim
export EDITOR=vim