adding python support plugins to vim

This commit is contained in:
Andrew Davidson 2020-06-19 14:09:23 -04:00
parent f6f4bef88f
commit defd53a954
Signed by: amd
GPG key ID: 17AF8F2A49CF25C6

View file

@ -17,6 +17,11 @@ Plug 'mhinz/vim-sayonara', { 'on': 'Sayonara' }
" Go support for Vim
"Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
" Python Stuff
Plug 'davidhalter/jedi-vim'
Plug 'psf/black', { 'branch': 'stable' }
autocmd BufWritePre *.py execute ':Black'
" Smart Line Numbers
Plug 'myusuf3/numbers.vim'