Neovim在Neovim运行的Neovim的便携式软件包管理器运行。
轻松安装和管理LSP服务器,DAP服务器,衬里和格式化器。
:help mason.nvim
最新版本:V1.10.0
:h mason-introduction
mason.nvim
是一个Neovim插件,可让您轻松地管理外部编辑器工具,例如LSP服务器,DAP服务器,衬里和格式化器,并通过一个接口。它可以在Neovim运行的任何地方运行(跨Linux,MacOS,Windows等),只需要一小部分外部要求。
默认情况下,软件包安装在Neovim的数据目录( :h standard-path
)中。可执行文件链接到单个bin/
目录, mason.nvim
在设置过程中将添加到Neovim的路径中,从而允许Neovim内置(Shell,Terminal等)以及其他第三方插件的无缝访问。
有关所有可用软件包的列表,请参见https://mason-registry.dev/registry/list。
:h mason-how-to-use-packages
尽管许多软件包都是通过Neovim内置的开箱即用的,但建议使用其他第三方插件进一步整合这些插件。建议使用以下插件:
lspconfig
和mason-lspconfig.nvim
nvim-dap
和nvim-dap-ui
null-ls.nvim
或nvim-lint
null-ls.nvim
或formatter.nvim
![]() | ![]() | ![]() |
![]() | ![]() | ![]() |
:h mason-requirements
mason.nvim
通过尝试多种不同的公用事业(例如wget
, curl
和Invoke-WebRequest
都是完美的替代品)来放松最低要求。建议的最低要求是:
>= 0.7.0
git(1)
curl(1)
或wget(1)
unzip(1)
tar(1)
或gtar(1)
取决于平台)gzip(1)
请注意, mason.nvim
会定期向外部包装管理人员(例如cargo
和npm
扣除。根据您的个人用法,其中一些也需要安装。请参阅:checkhealth mason
以获取完整列表。
use {
" williamboman/mason.nvim "
}
{
" williamboman/mason.nvim "
}
Plug ' williamboman/mason.nvim '
:h mason-quickstart
require ( " mason " ). setup ()
mason.nvim
在设置过程中被优化为尽可能少的加载。不建议延迟插件或以某种方式推迟设置。
有关可用设置的信息,请参阅“配置”部分。
有关第三方扩展名的列表,请参阅Wiki。
mason-lspconfig.nvim
建议使用lspconfig
:h mason-commands
:Mason
- 打开图形状态窗口:MasonUpdate
更新所有托管注册机构:MasonInstall <package> ...
安装/重新安装提供的软件包:MasonUninstall <package> ...
卸载提供的软件包:MasonUninstallAll
卸载所有软件包:MasonLog
在新的选项卡窗口中打开mason.nvim
日志文件Mason的核心包装注册表位于Mason-Org/Mason-Registry。在使用任何软件包之前,需要下载注册表。当使用不同的Mason命令(例如:MasonInstall
)时,这会自动为您完成,但也可以通过使用:MasonUpdate
命令手动完成。
如果您要使用梅森的Lua API访问软件包,则建议使用:h mason-registry.refresh()
和/或:h mason-registry.update()
函数,以确保您在检索包装之前拥有最新的软件包信息。
:h mason-settings
调用.setup()
函数时,您可以选择配置mason.nvim
的某些行为。有关所有可用设置的列表,请参阅默认配置。
例子:
require ( " mason " ). setup ({
ui = {
icons = {
package_installed = " ✓ " ,
package_pending = " ➜ " ,
package_uninstalled = " ✗ "
}
}
})
--- @class MasonSettings
local DEFAULT_SETTINGS = {
--- @since 1.0.0
-- The directory in which to install packages.
install_root_dir = path . concat { vim . fn . stdpath " data " , " mason " },
--- @since 1.0.0
-- Where Mason should put its bin location in your PATH. Can be one of:
-- - "prepend" (default, Mason's bin location is put first in PATH)
-- - "append" (Mason's bin location is put at the end of PATH)
-- - "skip" (doesn't modify PATH)
--- @type ' "prepend" ' | ' "append" ' | ' "skip" '
PATH = " prepend " ,
--- @since 1.0.0
-- 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 package installations.
log_level = vim . log . levels . INFO ,
--- @since 1.0.0
-- 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 ,
--- @since 1.0.0
-- [Advanced setting]
-- The registries to source packages from. Accepts multiple entries. Should a package with the same name exist in
-- multiple registries, the registry listed first will be used.
registries = {
" github:mason-org/mason-registry " ,
},
--- @since 1.0.0
-- The provider implementations to use for resolving supplementary package metadata (e.g., all available versions).
-- Accepts multiple entries, where later entries will be used as fallback should prior providers fail.
-- Builtin providers are:
-- - mason.providers.registry-api - uses the https://api.mason-registry.dev API
-- - mason.providers.client - uses only client-side tooling to resolve metadata
providers = {
" mason.providers.registry-api " ,
" mason.providers.client " ,
},
github = {
--- @since 1.0.0
-- The template URL to use when downloading assets from GitHub.
-- The placeholders are the following (in order):
-- 1. The repository (e.g. "rust-lang/rust-analyzer")
-- 2. The release version (e.g. "v0.3.0")
-- 3. The asset name (e.g. "rust-analyzer-v0.3.0-x86_64-unknown-linux-gnu.tar.gz")
download_url_template = " https://github.com/%s/releases/download/%s/%s " ,
},
pip = {
--- @since 1.0.0
-- Whether to upgrade pip to the latest version in the virtual environment before installing packages.
upgrade_pip = false ,
--- @since 1.0.0
-- These args will be added to `pip install` calls. Note that setting extra args might impact intended behavior
-- and is not recommended.
--
-- Example: { "--proxy", "https://proxyserver" }
install_args = {},
},
ui = {
--- @since 1.0.0
-- Whether to automatically check for new versions when opening the :Mason window.
check_outdated_packages_on_open = true ,
--- @since 1.0.0
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
border = " none " ,
--- @since 1.0.0
-- Width of the window. Accepts:
-- - Integer greater than 1 for fixed width.
-- - Float in the range of 0-1 for a percentage of screen width.
width = 0.8 ,
--- @since 1.0.0
-- Height of the window. Accepts:
-- - Integer greater than 1 for fixed height.
-- - Float in the range of 0-1 for a percentage of screen height.
height = 0.9 ,
icons = {
--- @since 1.0.0
-- The list icon to use for installed packages.
package_installed = " ◍ " ,
--- @since 1.0.0
-- The list icon to use for packages that are installing, or queued for installation.
package_pending = " ◍ " ,
--- @since 1.0.0
-- The list icon to use for packages that are not installed.
package_uninstalled = " ◍ " ,
},
keymaps = {
--- @since 1.0.0
-- Keymap to expand a package
toggle_package_expand = " <CR> " ,
--- @since 1.0.0
-- Keymap to install the package under the current cursor position
install_package = " i " ,
--- @since 1.0.0
-- Keymap to reinstall/update the package under the current cursor position
update_package = " u " ,
--- @since 1.0.0
-- Keymap to check for new version for the package under the current cursor position
check_package_version = " c " ,
--- @since 1.0.0
-- Keymap to update all installed packages
update_all_packages = " U " ,
--- @since 1.0.0
-- Keymap to check which installed packages are outdated
check_outdated_packages = " C " ,
--- @since 1.0.0
-- Keymap to uninstall a package
uninstall_package = " X " ,
--- @since 1.0.0
-- Keymap to cancel a package installation
cancel_installation = " <C-c> " ,
--- @since 1.0.0
-- Keymap to apply language filter
apply_language_filter = " <C-f> " ,
--- @since 1.1.0
-- Keymap to toggle viewing package installation log
toggle_package_install_log = " <CR> " ,
--- @since 1.8.0
-- Keymap to toggle the help view
toggle_help = " g? " ,
},
},
}
:help mason.nvim
!