mirror of
https://github.com/Manoj-HV30/i3wm-ubuntu-dotfiles.git
synced 2026-05-16 19:35:23 +00:00
20 lines
342 B
Lua
20 lines
342 B
Lua
return {
|
|
{
|
|
"williamboman/mason.nvim",
|
|
config = function()
|
|
require("mason").setup()
|
|
end,
|
|
},
|
|
{
|
|
"williamboman/mason-lspconfig.nvim",
|
|
tag = "v1.28.0",
|
|
config = function()
|
|
require("mason-lspconfig").setup({
|
|
ensure_installed = {},
|
|
automatic_installation = false,
|
|
})
|
|
end,
|
|
},
|
|
}
|
|
|