Skip to content

Commit

Permalink
Change terminal vim color scheme.
Browse files Browse the repository at this point in the history
  • Loading branch information
smerrill committed Apr 18, 2012
1 parent 12f05bd commit b582492
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ shopt -s checkwinsize

# Use vcprompt.
vcprompt_ps1() {
[[ `vcprompt -f %n` == 'svn' ]] && vcprompt -f ' at %r %m' || vcprompt -f ' on %b %m%u'
[[ `pwd -P` == /Users/smerrill/Documents/Development/perlgem* ]] && {
vcprompt -f ' on %b ¿'
} || {
[[ `vcprompt -f %n` == 'svn' ]] && vcprompt -f ' at %r %m' || vcprompt -f ' on %b %m%u'
}
}

# a functional but sane prompt
Expand Down
1 change: 1 addition & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ if !has("gui_running")
" Oh, OS X.
set t_Co=256
"colorscheme mustang
colorscheme Tomorrow-Night-Bright
else
" Set color scheme
colorscheme Tomorrow-Night-Bright
Expand Down

0 comments on commit b582492

Please sign in to comment.