chore(nvim): Lazy load LSP

This commit is contained in:
2024-06-01 04:02:34 +01:00
parent 3b363aa032
commit 591ff97111

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"
},