X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=states%2Fvim%2Ffiles%2Fvimrc;h=2cb9aa8c0dab7157ad3060a83083258c815bd51b;hb=ec3225325799b70423908cffe3ab84fb9a4e0f51;hp=c81cf77a8034e62648d3eae8f794ed5bd74e5190;hpb=d48468aaa29c3911bd6c7d144a6b5a9946599ec9;p=max%2Fsaltfiles.git diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index c81cf77..2cb9aa8 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -21,6 +21,7 @@ Plugin 'vim-airline/vim-airline' Plugin 'vim-airline/vim-airline-themes' Plugin 'airblade/vim-gitgutter' Plugin 'tpope/vim-fugitive' +Plugin 'liskin/vim-fubitive' Plugin 'kien/ctrlp.vim' Plugin 'editorconfig/editorconfig-vim' Plugin 'LaTeX-Box-Team/LaTeX-Box' @@ -38,6 +39,7 @@ Plugin 'aklt/plantuml-syntax' Plugin 'vim-python/python-syntax' Plugin 'luochen1990/rainbow' Plugin 'majutsushi/tagbar' +Plugin 'heavenshell/vim-pydocstring' " All of your Plugins must be added before the following line call vundle#end() " required @@ -50,9 +52,9 @@ set backupdir=$HOME/.vim/backup// syntax on set background=dark colorscheme molokai -" set expandtab -" set shiftwidth=2 -" set softtabstop=2 +set expandtab +set shiftwidth=4 +set softtabstop=4 set relativenumber set number @@ -70,7 +72,7 @@ let g:syntastic_check_on_open = 1 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_checkers = ['flake8', 'python3 -m pylint'] let g:syntastic_aggregate_errors = 1 " Syntastic C++11 @@ -157,3 +159,6 @@ let g:rainbow_active = 1 " Activate tagbar with F8 nmap :TagbarToggle + +" Set path to doq +let g:pydocstring_doq_path= "/home/max/.local/bin/doq"