aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/pyls_ms.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim_lsp/pyls_ms.lua')
-rw-r--r--lua/nvim_lsp/pyls_ms.lua24
1 files changed, 11 insertions, 13 deletions
diff --git a/lua/nvim_lsp/pyls_ms.lua b/lua/nvim_lsp/pyls_ms.lua
index daf90669..fa8241b4 100644
--- a/lua/nvim_lsp/pyls_ms.lua
+++ b/lua/nvim_lsp/pyls_ms.lua
@@ -107,21 +107,18 @@ configs[name] = {
installer.configure(config)
end;
init_options = {
- interpreter =
- {
- properties=
- {
- InterpreterPath=vim.fn.exepath("python");
- Version=get_python_version();
- };
- };
- displayOptions= {};
- analysisUpdates=true;
- asyncStartup=true;
+ interpreter = {
+ properties =
+ {
+ InterpreterPath = vim.fn.exepath("python");
+ Version = get_python_version();
+ };
+ };
+ displayOptions = {};
+ analysisUpdates = true;
+ asyncStartup = true;
};
};
- -- on_new_config = function(new_config) end;
- -- on_attach = function(client, bufnr) end;
docs = {
description = [[
https://github.com/Microsoft/python-language-server
@@ -153,3 +150,4 @@ This server accepts configuration via the `settings` key.
configs[name].install = installer.install
configs[name].install_info = installer.info
+-- vim:et ts=2 sw=2