18 lines
250 B
Bash
18 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
|