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
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
let g:formatdef_autopep8 = "'autopep8 --aggressive --aggressive - --range '.a:firstline.' '.a:lastline"
let g:formatters_python = ['autopep8']
noremap <F3> :Autoformat<CR>
+
+let ropevim_goto_def_newwin = 1
+let ropevim_guess_project = 1