dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 9e0be5d5c6909961149c9380903dc84dcbcdba25
parent b10f42b62a76842c9152de77029876140321a931
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Fri,  9 Sep 2016 10:43:56 -0700

disable python linting

Diffstat:
M.vimrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.vimrc b/.vimrc @@ -583,14 +583,14 @@ vnoremap <silent> <Enter> :EasyAlign<cr> " ]] Jump on next class or function (normal, visual, operator modes) " [M Jump on previous class or method (normal, visual, operator modes) " ]M Jump on next class or method (normal, visual, operator modes) -let g:pymode_rope = 1 +let g:pymode_rope = 0 " Documentation let g:pymode_doc = 1 let g:pymode_doc_key = 'K' "Linting -let g:pymode_lint = 1 +let g:pymode_lint = 0 let g:pymode_lint_checker = "pyflakes,pep8" " Auto check on save let g:pymode_lint_write = 1