blob: b72e72584651ec42e25e4a1ead908fd0608d5432 (
plain) (
tree)
|
|
# 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
|