Compare commits

..

1 commit

Author SHA1 Message Date
75ad89d4b5
add abbr for hexyl 2026-01-12 11:12:12 -05:00

View file

@ -86,7 +86,14 @@ require("lazy").setup({
{ "mason-org/mason.nvim", version = "^v2.2.1", opts = {} },
{ "neovim/nvim-lspconfig", version = "^v2.5.0"}
},
opts = {},
config = function()
require("mason-lspconfig").setup({})
local lspconfig = require("lspconfig")
for _, server in ipairs(require("mason-lspconfig").get_installed_servers()) do
lspconfig[server].setup({})
end
end,
},
{