14 lines
384 B
VimL
14 lines
384 B
VimL
" ==================================================
|
|
" 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:
|