chore(nvim): Lazy load LSP

This commit is contained in:
Afonso Franco 2024-06-01 04:02:34 +01:00
parent 3b363aa032
commit 591ff97111
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4

View file

@ -6,6 +6,7 @@ return {
},
{
"williamboman/mason.nvim",
event = "VeryLazy",
config = function()
local mason = require("mason")
vim.api.nvim_create_augroup("_mason", { clear = true })
@ -35,6 +36,7 @@ return {
},
{
"williamboman/mason-lspconfig.nvim",
event = "VeryLazy",
dependencies = {
"williamboman/mason.nvim"
},