Upload basic runtime config files for bash and vim
This commit is contained in:
commit
1b7ca54fdb
2 changed files with 23 additions and 0 deletions
17
.bash_profile
Normal file
17
.bash_profile
Normal 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
6
.vimrc
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
syntax on
|
||||||
|
set number
|
||||||
|
set tabstop=2
|
||||||
|
set expandtab
|
||||||
|
set shiftwidth=2
|
||||||
|
colorscheme murphy
|
Loading…
Reference in a new issue