diff options
-rw-r--r-- | .bash_profile | 17 | ||||
-rw-r--r-- | .vimrc | 6 |
2 files changed, 23 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 diff --git a/.vimrc b/.vimrc new file mode 100644 index 000000000000..10739ec297e0 --- /dev/null +++ b/.vimrc @@ -0,0 +1,6 @@ +syntax on +set number +set tabstop=2 +set expandtab +set shiftwidth=2 +colorscheme murphy |