]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/ftplugin/python/lsp.vim
Move to vim-lsc from vim-lsp
[dotfiles.git] / vim / .vim / ftplugin / python / lsp.vim
diff --git a/vim/.vim/ftplugin/python/lsp.vim b/vim/.vim/ftplugin/python/lsp.vim
deleted file mode 100644 (file)
index 7cbc696..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-if executable("pyls")
-    " pip install 'python-language-server[all]'
-    au User lsp_setup call lsp#register_server({
-    \    "name": "pyls",
-    \    "cmd": {server_info->["pyls"]},
-    \    "allowlist": ["python"],
-    \    "workspace_config": {"pyls": {
-    \        "configurationSources": ["flake8"],
-    \        "plugins": {
-    \            "mccabe": {"enabled": v:false},
-    \        },
-    \    }},
-    \})
-endif