dotfiles/vim/.vim/rc.d/20-python-mode.vim

14 lines
384 B
VimL
Raw Normal View History

2018-10-02 21:41:43 +01:00
" ==================================================
" Disable python-mode rope completion (using Jedi)
" Disable folding
" Don't trim whitespace on save
" ==================================================
let g:pymode_rope_completion = 0
let g:pymode_folding = 0
let g:pymode_rope = 0
let g:pymode_trim_whitespaces = 0
let g:pymode_lint = 0
let g:pymode_doc = 0
" vim:set et sw=2: