remove redundant comments and disable pymode's autocompletion in favor of jedi
This commit is contained in:
parent
3989ee112b
commit
77395b3d40
1 changed files with 17 additions and 4 deletions
|
|
@ -2,7 +2,23 @@ filetype off
|
||||||
|
|
||||||
call pathogen#infect()
|
call pathogen#infect()
|
||||||
call pathogen#helptags()
|
call pathogen#helptags()
|
||||||
let g:pymode_lint=0
|
""" Python-Mode settings
|
||||||
|
let g:pymode_lint=0 "don't syntax-check
|
||||||
|
let g:pymode_lint_checker = "pyflakes, pep8"
|
||||||
|
|
||||||
|
let g:pymode_rope=0 "don't rope autocomplete
|
||||||
|
|
||||||
|
let g:pymode_breakpoint_cmd = 'import ipdb;ipdb.set_trace # FIXME: breakpoint!'
|
||||||
|
|
||||||
|
" syntax highlighting
|
||||||
|
let g:pymode_syntax = 1
|
||||||
|
let g:pymode_syntax_all = 1
|
||||||
|
let g:pymode_syntax_indent_errors = g:pymode_syntax_all
|
||||||
|
let g:pymode_syntax_space_errors = g:pymode_syntax_all
|
||||||
|
|
||||||
|
" Don't autofold code
|
||||||
|
let g:pymode_folding = 0
|
||||||
|
""" End Python-Mode settings
|
||||||
|
|
||||||
let mapleader=","
|
let mapleader=","
|
||||||
set nobackup
|
set nobackup
|
||||||
|
|
@ -113,9 +129,6 @@ function! StatuslineTrailingSpaceWarning()
|
||||||
return b:statusline_trailing_space_warning
|
return b:statusline_trailing_space_warning
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
""" Powerline
|
|
||||||
""" set rtp+=~/.vim/bundle/powerline/powerline/bindings/vim
|
|
||||||
|
|
||||||
|
|
||||||
""" CtrlP
|
""" CtrlP
|
||||||
let g:ctrlp_show_hidden = 1
|
let g:ctrlp_show_hidden = 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue