X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=vim%2F.vimrc;h=6cc614e2b007a1080a9ffa9c01f79c4cc14923ba;hb=9832392f3d5106c15a3ff0619f4f2f1f29104c4e;hp=51f96d0652a4a6138e0ea5a5f2b4e65730756337;hpb=081bf31a38cd5e13d4bce787462fb3395cd6e8ae;p=max%2Fdotfiles.git diff --git a/vim/.vimrc b/vim/.vimrc index 51f96d0..6cc614e 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -11,7 +11,7 @@ call vundle#begin() " call vundle#begin('~/some/path/here') Plugin 'gmarik/Vundle.vim' Plugin 'jelera/vim-javascript-syntax' -Plugin 'altercation/vim-colors-solarized' +Plugin 'noahfrederick/vim-noctu' Plugin 'Lokaltog/vim-distinguished' Plugin 'pangloss/vim-javascript' Plugin 'Yggdroot/indentLine' @@ -36,10 +36,8 @@ call vundle#end() " required filetype plugin indent on " required " Random look and feel stuff -set t_Co=256 +set t_Co=16 syntax on -set background=dark -colorscheme solarized set expandtab set shiftwidth=2 set softtabstop=2 @@ -58,8 +56,8 @@ let g:syntastic_auto_loc_list = 2 let g:syntastic_check_on_open = 0 let g:syntastic_check_on_wq = 1 let g:syntastic_javascript_checkers = ['eslint'] -"let g:syntastic_python_python_exec = '/usr/bin/python3' -"let g:syntastic_python_checkers = ['flake8'] +let g:syntastic_python_python_exec = '/usr/bin/python3' +let g:syntastic_python_checkers = ['flake8'] " Syntastic C++11 let g:syntastic_cpp_compiler = 'g++'