fully on lazy! cleaned up some plugins

This commit is contained in:
Norm Rasmussen
2023-02-11 11:32:58 -05:00
parent 8632f79d4a
commit fc4743abc1
10 changed files with 296 additions and 134 deletions

22
lua/plugins/mason.lua Normal file
View File

@ -0,0 +1,22 @@
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
}