Upload basic runtime config files for bash and vim

This commit is contained in:
William Carroll 2015-09-28 22:49:09 -07:00
commit 1b7ca54fdb
2 changed files with 23 additions and 0 deletions

17
.bash_profile Normal file
View file

@ -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

6
.vimrc Normal file
View file

@ -0,0 +1,6 @@
syntax on
set number
set tabstop=2
set expandtab
set shiftwidth=2
colorscheme murphy