X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=vim%2F.vimrc;h=2979b3c51a2e7281256beeac2de55b0540c0f582;hb=4d5f16dc19a9196dd0300afdc5989a2f891ffcb3;hp=e92096fdf617a69b4bfc555fe8c7e477de9b2f58;hpb=a8244e06cd9069e62f97755502a1fe8379427a93;p=max%2Fdotfiles.git diff --git a/vim/.vimrc b/vim/.vimrc index e92096f..2979b3c 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' @@ -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,10 +36,9 @@ 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 +colorscheme noctu set expandtab set shiftwidth=2 set softtabstop=2 @@ -57,8 +57,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++'