Skip to content

Commit

Permalink
Added the Tomorrow theme bundle and set up the Tomorrow theme(s) as d…
Browse files Browse the repository at this point in the history
…efault.
  • Loading branch information
jeffbuttars committed Sep 5, 2012
1 parent 73a7cb7 commit af9b4d5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions vimrc/bundles.vim
Expand Up @@ -70,6 +70,10 @@ Bundle 'https://github.com/w0ng/vim-hybrid'
" [Hemisu](http://noahfrederick.com/vim-color-scheme-hemisu/) " [Hemisu](http://noahfrederick.com/vim-color-scheme-hemisu/)
" looks nice, going to try it out for a while " looks nice, going to try it out for a while
Bundle 'Lucius' Bundle 'Lucius'

" The tomorrow theme(s)
Bundle 'https://github.com/chriskempson/tomorrow-theme'

" The following are schemes I like, but I'm not using them right now. " The following are schemes I like, but I'm not using them right now.
" Bundle 'noahfrederick/Hemisu' " Bundle 'noahfrederick/Hemisu'
" Bundle 'eclm_wombat.vim' " Bundle 'eclm_wombat.vim'
Expand Down
8 changes: 7 additions & 1 deletion vimrc/theme.vim
Expand Up @@ -16,6 +16,9 @@ syntax enable
" * colo neutron " A very nice creamy light theme. " * colo neutron " A very nice creamy light theme.
" * colo vylight " A light theme " * colo vylight " A light theme
" * colo jellybeans " A dark color full theme " * colo jellybeans " A dark color full theme
"
" Add the tomorrow themes to the runtime path
set runtimepath+=~/.vim/bundle/tomorrow-theme/vim


" Explicitly say we want 256 colors when we find 256 " Explicitly say we want 256 colors when we find 256
" in the TERM environmental variable. " in the TERM environmental variable.
Expand Down Expand Up @@ -64,9 +67,12 @@ elseif $TERM =~ '256' || $COLORTERM =~ 'gnome-terminal'
if $TERM_META =~ 'white' if $TERM_META =~ 'white'
set background=light set background=light
let g:lucius_style = "light" let g:lucius_style = "light"
colorscheme Tomorrow
else
colorscheme Tomorrow-Night-Bright
endif endif


colorscheme lucius " colorscheme lucius


endif endif


Expand Down

0 comments on commit af9b4d5

Please sign in to comment.