Files
nvim/lua/plugins/mason.lua

23 lines
434 B
Lua
Raw Normal View History

2023-02-11 11:32:58 -05:00
return {
-- Easy Way to install Language Servers
{ 'williamboman/mason.nvim',
},
'williamboman/mason-lspconfig.nvim',
'neovim/nvim-lspconfig',
config = function()
require("mason").setup()
local lsp_installer = require("mason-lspconfig").setup({
automatic_instalsation = true,
ui = {
icons = {
server_installed = "",
server_pending = "",
server_uninstalled = ""
}
}
})
end
}