diff options
author | William Carroll <wpcarro@gmail.com> | 2015-09-29T05·49-0700 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2015-09-29T05·49-0700 |
commit | 1b7ca54fdb0d421eebadea676a26b7f9216c6006 (patch) | |
tree | 947f6c23f0d610b4fddb77a26059f6368e6c779e /.bash_profile |
Upload basic runtime config files for bash and vim
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 000000000000..b72e72584651 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,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 |