diff options
author | Matt Singleton <matt@xcolour.net> | 2017-11-24 09:10:51 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2017-11-24 09:10:51 -0500 |
commit | 38178a9fb1abbd844b91e836c3ebd2664ab819c1 (patch) | |
tree | db4ac8f7db5a95e1e462de88ffc98fa7764b3966 /vimrc | |
parent | fa5371cdb1f53f2f005a7db8a88bfd998a1638b5 (diff) |
truecolor support isn't worth the trouble
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -11,7 +11,7 @@ call vundle#rc() Bundle 'gmarik/vundle' Bundle 'scrooloose/nerdtree' -Bundle 'iCyMind/NeoSolarized' +Bundle 'altercation/vim-colors-solarized' Bundle 'vim-scripts/bufexplorer.zip' Bundle 'kien/ctrlp.vim' Bundle 'pangloss/vim-javascript' @@ -156,13 +156,12 @@ nnoremap <leader>r :call ToggleSyntasticErrors()<Enter> " visual " -set termguicolors "true color let g:solarized_visibility="high" "trailing characters very visible let g:solarized_menu=0 "don't show the gui menu set synmaxcol=500 syntax on set background=light -colo NeoSolarized +silent! colo solarized "silent so it doesn't harf before it's installed set hlsearch " don't mess up gutter highlight with gitgutter |