Update vim settings

This commit is contained in:
Andrew Tomaka 2012-12-07 10:23:17 -05:00
parent 962c8256c2
commit af3b93e85f
2 changed files with 18 additions and 2 deletions

View file

@ -1,5 +1,5 @@
source ~/.vimrc
colorscheme Tomorrow-Night-Blue
set guioptions=aci
winsize 80 50
set guifont=Consolas\ 10

16
.vimrc
View file

@ -50,3 +50,19 @@ filetype plugin on
filetype indent on
" --- }}}
" --- Style and font --------------------------------------------------------{{{
if has('gui_running')
colorscheme Tomorrow-Night-Blue
elseif $COLORTERM == 'gnome-terminal'
set term=gnome-256color
colorscheme Tomorrow-Night-Blue
else
colorscheme default
endif
if has("gui_gtk2")
set guifont=Ubuntu\ Mono\ 10
else
set guifont=Ubuntu\ Mono:01
endif
" --- }}}