about summary refs log tree commit diff
path: root/.bash_profile
blob: b72e72584651ec42e25e4a1ead908fd0608d5432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# bash profile settings for William Carroll

# welcome message
echo "Hello, welcome back, William"

# change bash prompt
PS1='$ '

# input mode to Vi
set -o vi

# shortcuts
alias h="history"
alias vi="vim"
alias c="clear"

export EDITOR=/usr/bin/vim