From 88fae8ded34dc64e2ed1a4564e2c57e0c51aec73 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sun, 30 Aug 2015 21:13:14 -0700 Subject: [PATCH] Use solarized color scheme in vim. --- vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vimrc b/vimrc index 7de8a61..25fb080 100644 --- a/vimrc +++ b/vimrc @@ -16,6 +16,7 @@ if filereadable(glob("~/.vim/bundle/Vundle.vim/README.md")) Plugin 'mattn/gist-vim' Plugin 'fatih/vim-go' Plugin 'Valloric/YouCompleteMe' + Plugin 'altercation/vim-colors-solarized' call vundle#end() endif @@ -39,6 +40,11 @@ set ruler set encoding=utf-8 " Syntax highlighting and file types syntax on +set background=dark +if !has('gui_running') + let g:solarized_termcolors=256 +endif +colorscheme solarized filetype plugin indent on " Allow file modelines set modeline