X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=states%2Fvim%2Ffiles%2Fvimrc;h=145fd4f95a829f49154311eba5a53b08cbe68561;hb=cc380a1eeb2fd611cfb96574b44dd00e2e168b92;hp=558f124c77be16ab37911ae6338ccbe4bdc18c74;hpb=86e45e95f422dd62983c3a2fbcdfbc2901ea6f17;p=max%2Fsaltfiles.git diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index 558f124..145fd4f 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -32,6 +32,7 @@ Plugin 'majutsushi/tagbar' Plugin 'altercation/vim-colors-solarized' Plugin 'ctrlpvim/ctrlp.vim' Plugin 'Chiel92/vim-autoformat' +Plugin 'python-rope/ropevim' " All of your Plugins must be added before the following line call vundle#end() " required @@ -140,9 +141,6 @@ let g:python_highlight_string_templates = 1 let g:python_highlight_class_vars = 1 let g:python_highlight_operators = 1 -" Python indent -autocmd FileType python setlocal foldmethod=indent foldnestmax=2 - " Paren highlighting hi MatchParen cterm=underline ctermbg=none ctermfg=none @@ -164,4 +162,9 @@ if executable('ag') endif " Auto formatters +let g:formatdef_autopep8 = "'autopep8 --aggressive --aggressive - --range '.a:firstline.' '.a:lastline" let g:formatters_python = ['autopep8'] +noremap :Autoformat + +let ropevim_goto_def_newwin = 1 +let ropevim_guess_project = 1