aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-10-14 23:04:06 +0200
committerWilliam Boman <william@redwill.se>2021-10-14 23:04:06 +0200
commit4346b3b06103e89ec91e450b29f9a7314dd61495 (patch)
treeb0ccc216ccdefc98b98e49aa86df8499f2ebe722
parentfix :LspInstall completion (diff)
downloadmason-4346b3b06103e89ec91e450b29f9a7314dd61495.tar
mason-4346b3b06103e89ec91e450b29f9a7314dd61495.tar.gz
mason-4346b3b06103e89ec91e450b29f9a7314dd61495.tar.bz2
mason-4346b3b06103e89ec91e450b29f9a7314dd61495.tar.lz
mason-4346b3b06103e89ec91e450b29f9a7314dd61495.tar.xz
mason-4346b3b06103e89ec91e450b29f9a7314dd61495.tar.zst
mason-4346b3b06103e89ec91e450b29f9a7314dd61495.zip
doc: fix indentation
-rw-r--r--doc/nvim-lsp-installer.txt60
1 files changed, 30 insertions, 30 deletions
diff --git a/doc/nvim-lsp-installer.txt b/doc/nvim-lsp-installer.txt
index 667973f7..6cf7da8c 100644
--- a/doc/nvim-lsp-installer.txt
+++ b/doc/nvim-lsp-installer.txt
@@ -149,40 +149,40 @@ Example: >
The following settings are applied by default. >
local DEFAULT_SETTINGS = {
- ui = {
- icons = {
- -- The list icon to use for installed servers.
- server_installed = "◍",
- -- The list icon to use for servers that are pending installation.
- server_pending = "◍",
- -- The list icon to use for servers that are not installed.
- server_uninstalled = "◍",
+ ui = {
+ icons = {
+ -- The list icon to use for installed servers.
+ server_installed = "◍",
+ -- The list icon to use for servers that are pending installation.
+ server_pending = "◍",
+ -- The list icon to use for servers that are not installed.
+ server_uninstalled = "◍",
+ },
+ keymaps = {
+ -- Keymap to expand a server in the UI
+ toggle_server_expand = "<CR>",
+ -- Keymap to install a server
+ install_server = "i",
+ -- Keymap to reinstall/update a server
+ update_server = "u",
+ -- Keymap to uninstall a server
+ uninstall_server = "X",
+ },
},
- keymaps = {
- -- Keymap to expand a server in the UI
- toggle_server_expand = "<CR>",
- -- Keymap to install a server
- install_server = "i",
- -- Keymap to reinstall/update a server
- update_server = "u",
- -- Keymap to uninstall a server
- uninstall_server = "X",
- },
- },
- -- 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.INFO,
+ -- 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.INFO,
- -- 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,
+ -- 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,
- -- Limit for the maximum amount of servers to be installed at the same time. Once this limit is reached, any further
- -- servers that are requested to be installed will be put in a queue.
- max_concurrent_installers = 4,
+ -- Limit for the maximum amount of servers to be installed at the same time. Once this limit is reached, any further
+ -- servers that are requested to be installed will be put in a queue.
+ max_concurrent_installers = 4,
}
<