aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/settings.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-09-30 21:41:49 +0200
committerWilliam Boman <william@redwill.se>2021-09-30 21:41:49 +0200
commita7d7520bc84269fd29ae265f6142897ccd58d5c6 (patch)
tree6003c28d3e3fa8b7afa07acfc12a52c799a320c6 /lua/nvim-lsp-installer/settings.lua
parentfeat(ui): add a popup option (#100) (diff)
downloadmason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar
mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.gz
mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.bz2
mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.lz
mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.xz
mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.tar.zst
mason-a7d7520bc84269fd29ae265f6142897ccd58d5c6.zip
fix logging at correct level, also add :LspInstallLog command
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,
}