]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/ftplugin/python/lsp.vim
c792deac5f876346e32d566cc2d492966c84e9ec
[dotfiles.git] / vim / .vim / ftplugin / python / lsp.vim
1 if executable("pyls")
2     " pip install 'python-language-server[all]'
3     au User lsp_setup call lsp#register_server({
4     \    "name": "pyls",
5     \    "cmd": {server_info->["pyls"]},
6     \    "whitelist": ["python"],
7     \})
8 endif