aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/pyls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim_lsp/pyls.lua')
-rw-r--r--lua/nvim_lsp/pyls.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/lua/nvim_lsp/pyls.lua b/lua/nvim_lsp/pyls.lua
deleted file mode 100644
index 6d4aeb56..00000000
--- a/lua/nvim_lsp/pyls.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-local configs = require 'nvim_lsp/configs'
-
-configs.pyls = {
- default_config = {
- cmd = {"pyls"};
- filetypes = {"python"};
- root_dir = function(fname)
- return vim.fn.getcwd()
- end;
- };
- docs = {
- package_json = "https://raw.githubusercontent.com/palantir/python-language-server/develop/vscode-client/package.json";
- description = [[
-https://github.com/palantir/python-language-server
-
-`python-language-server`, a language server for Python.
- ]];
- default_config = {
- root_dir = "vim's starting directory";
- };
- };
-};
--- vim:et ts=2 sw=2