From 7ff2be79236b5da0b1e5bfa771228ad5d72b4256 Mon Sep 17 00:00:00 2001 From: Ahir Reddy Date: Thu, 4 Jul 2013 02:39:57 -0700 Subject: [PATCH] added solarized vim theme --- .vimrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 0a816aef2..704b5bec7 100644 --- a/.vimrc +++ b/.vimrc @@ -25,6 +25,7 @@ Bundle 'scrooloose/nerdtree' Bundle 'klen/python-mode' Bundle 'davidhalter/jedi-vim' Bundle 'tpope/vim-fugitive' +Bundle 'altercation/vim-colors-solarized' " The rest of your config follows here @@ -68,7 +69,7 @@ let g:pymode_doc_key = 'K' let g:pymode_lint = 1 let g:pymode_lint_checker = "pyflakes,pep8" " Auto check on save -let g:pymode_lint_write = 1 +let g:pymode_lint_write = 0 " Support virtualenv let g:pymode_virtualenv = 1 @@ -106,3 +107,7 @@ if has ('gui_running') highlight Pmenu guibg=#cccccc gui=bold endif +" solarized theme +syntax enable +set background=dark +colorscheme solarized