X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=vim%2F.vimrc;h=7d64fd0a76d352252628e360a073015c90103451;hb=3fa65253d4639eb1b7a9b15f4328096e1be67881;hp=e92096fdf617a69b4bfc555fe8c7e477de9b2f58;hpb=a8244e06cd9069e62f97755502a1fe8379427a93;p=max%2Fdotfiles.git diff --git a/vim/.vimrc b/vim/.vimrc index e92096f..7d64fd0 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -19,7 +19,8 @@ Plugin 'Raimondi/delimitMate' Plugin 'scrooloose/syntastic' Plugin 'ternjs/tern_for_vim' Plugin 'docunext/closetag.vim' -Plugin 'bling/vim-airline' +Plugin 'vim-airline/vim-airline' +Plugin 'vim-airline/vim-airline-themes' Plugin 'airblade/vim-gitgutter' Plugin 'tpope/vim-fugitive' Plugin 'kien/ctrlp.vim' @@ -35,7 +36,7 @@ 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 @@ -57,8 +58,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++' @@ -70,6 +71,7 @@ let g:airline_powerline_fonts = 0 set timeoutlen=1000 let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#fnamemod = ':t' +let g:airline_theme = 'solarized' " Setting wildignore set wildignore+=venv