aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-07-07 01:01:25 +0200
committerWilliam Boman <william@redwill.se>2022-07-07 01:02:13 +0200
commit8519abf773fbafe66f555075c0a31fb0bea4dc91 (patch)
treed135a62c35f5fb9b8be80d17f17e9ca35d6a8dff /README.md
parentfix(logs): use 0.7-compatible stdpath (diff)
downloadmason-8519abf773fbafe66f555075c0a31fb0bea4dc91.tar
mason-8519abf773fbafe66f555075c0a31fb0bea4dc91.tar.gz
mason-8519abf773fbafe66f555075c0a31fb0bea4dc91.tar.bz2
mason-8519abf773fbafe66f555075c0a31fb0bea4dc91.tar.lz
mason-8519abf773fbafe66f555075c0a31fb0bea4dc91.tar.xz
mason-8519abf773fbafe66f555075c0a31fb0bea4dc91.tar.zst
mason-8519abf773fbafe66f555075c0a31fb0bea4dc91.zip
chore: adjust some remnants of nvim-lsp-installer
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index be96c276..8c12348c 100644
--- a/README.md
+++ b/README.md
@@ -95,9 +95,9 @@ Example:
require("mason").setup({
ui = {
icons = {
- server_installed = "✓",
- server_pending = "➜",
- server_uninstalled = "✗"
+ package_installed = "✓",
+ package_pending = "➜",
+ package_uninstalled = "✗"
}
}
})
@@ -152,11 +152,11 @@ local DEFAULT_SETTINGS = {
},
-- 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.
+ -- debugging issues with package installations.
log_level = vim.log.levels.INFO,
- -- 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.
+ -- Limit for the maximum amount of packages to be installed at the same time. Once this limit is reached, any further
+ -- packages that are requested to be installed will be put in a queue.
max_concurrent_installers = 4,
github = {