1
0
Fork 0
mirror of https://github.com/luzifer/vim.git synced 2024-11-08 23:50:01 +00:00

Install and configure autopep8

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-02-24 14:05:18 +01:00
parent 9b8b3e288c
commit 1e32bf0290
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

8
vimrc
View file

@ -16,6 +16,7 @@ Plugin 'Shougo/neocomplete.vim'
Plugin 'scrooloose/nerdcommenter'
Plugin 'wakatime/vim-wakatime'
Plugin 'godlygeek/tabular'
Plugin 'tell-k/vim-autopep8'
" Jimdo stuff
Plugin 'Jimdo/vim-spec-runner'
@ -1006,3 +1007,10 @@ autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
let g:go_gocode_autobuild = 1
let g:go_metalinter_deadline = "20s"
let g:go_autodetect_gopath = 0
"
" autopep8 configuration
"
let g:autopep8_aggressive=1
let g:autopep8_disable_show_diff=1