tvl-depot/.bash_profile

18 lines
250 B
Bash
Raw Normal View History

# 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