tvl-depot/.bash_profile
2015-09-28 22:49:09 -07:00

17 lines
250 B
Bash

# 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