summaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc10
1 files changed, 9 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 79300c5..5cf1caa 100644
--- a/vimrc
+++ b/vimrc
@@ -1,5 +1,6 @@
-execute pathogen#infect()
+call pathogen#infect()
+call pathogen#helptags()
call plug#begin('~/.vim/plugged')
Plug 'junegunn/vim-easy-align'
@@ -537,3 +538,10 @@ augroup Todo
autocmd FileType vimwiki set syn=todo
augroup END
+augroup PyMode
+ let g:pymode_lint_on_fly = 1
+ let g:pymode_lint_unmodified = 1
+
+ autocmd FileType * set signcolumn=auto
+ autocmd FileType python set signcolumn=yes
+augroup END