aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/settings.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/settings.lua')
-rw-r--r--lua/nvim-lsp-installer/settings.lua16
1 files changed, 6 insertions, 10 deletions
diff --git a/lua/nvim-lsp-installer/settings.lua b/lua/nvim-lsp-installer/settings.lua
index ec7f622b..eb01c78c 100644
--- a/lua/nvim-lsp-installer/settings.lua
+++ b/lua/nvim-lsp-installer/settings.lua
@@ -10,18 +10,14 @@ local DEFAULT_SETTINGS = {
},
},
- -- Controls to which degree logs are written to the log file. For example, it's useful to set this to
- -- vim.log.levels.TRACE when debugging issues with server installations.
+ -- Controls to which degree logs are written to the log file. It's useful to set this to vim.log.levels.DEBUG when
+ -- debugging issues with server installations.
log_level = vim.log.levels.WARN,
- -- Whether to allow LSP servers to share the same installation directory.
- -- For some servers, this effectively causes more than one server to be
- -- installed (and uninstalled) when executing `:LspInstall` and
- -- `:LspUninstall`.
-
- -- For example, installing `cssls` will also install both `jsonls` and `html`
- -- (and the other ways around), as these all share the same underlying
- -- package.
+ -- Whether to allow LSP servers to share the same installation directory. For some servers, this effectively causes
+ -- more than one server to be installed (and uninstalled) when executing `:LspInstall` and `:LspUninstall`. For
+ -- example, installing `cssls` will also install both `jsonls` and `html` (and the other ways around), as these all
+ -- share the same underlying package.
allow_federated_servers = true,
}