diff --git a/bashrc b/bashrc index f26d2dd..9bf4b1b 100644 --- a/bashrc +++ b/bashrc @@ -1,10 +1,12 @@ # Custom scripts + + #find ~/.scripts/ ~/.gscripts/ -type f -name "*.sh" | while read script; do #source "$script" #done -source ~/.scripts/index.sh -source ~/.gscripts/index.sh +[ -f ~/.scripts/index.sh ] && source ~/.scripts/index.sh +[ -f ~/.gscripts/index.sh ] && source ~/.gscripts/index.sh # Prompt if [[ $USER == 'root' ]]; then diff --git a/vimrc b/vimrc index aa4d7dc..b0f1bfa 100644 --- a/vimrc +++ b/vimrc @@ -217,6 +217,7 @@ set updatetime=250 syntax enable set background=dark +set t_Co=256 colorscheme solarized " From http://stackoverflow.com/a/5004785/2766106