jones-nvim-config/lua/config/mason.lua

19 lines
337 B
Lua
Raw Permalink Normal View History

2024-04-07 03:14:14 +00:00
-- Mason
require("mason").setup({
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = "",
},
},
2024-04-07 03:14:14 +00:00
})
-- A list of servers to automatically install if they're not already installed
require("mason-lspconfig").setup({
ensure_installed = {
"tsserver",
"jsonls",
"lua_ls",
},
2024-04-07 03:14:14 +00:00
})