[vim] Python setup guides

This commit is contained in:
Vladan Popovic 2019-08-26 01:25:23 +02:00
parent 565a12a968
commit 4987a2e208
1 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,19 @@
" Python setup for VIM.
" Features:
" - Autocompletion with pyls that opens documentation in another window while
" moving through names.
" - Static type checking with mypy.
" - Autoformat on save with autopep8.
" - PyLint for keeping score.
"
" Packages required for this config to work:
" pip3 install [--user] \
" mypy \
" pylint \
" autopep8 \
" git+https://github.com/palantir/python-language-server.git
"
set tabstop=4
set softtabstop=4
set shiftwidth=4