nvim-config/lua/plugin-config/mason.lua
2023-06-12 10:47:26 +08:00

16 lines
401 B
Lua

require("mason").setup({
automatic_installation = true, -- automatically detect which servers to install (based on which servers are set up via lspconfig)
ui = {
icons = {
server_installed = "",
server_pending = "",
server_uninstalled = "",
},
},
})
require("mason-lspconfig").setup({
automatic_installation = true,
ensure_installed = { "lua_ls", "clangd", "pyright" },
})