Make mason load lazily

This commit is contained in:
2023-09-15 22:45:47 +02:00
parent a072ff5342
commit 3bc95f22da
+4
View File
@@ -85,10 +85,14 @@ local plugins = {
{ {
"williamboman/mason.nvim", "williamboman/mason.nvim",
config = function () require("plugins.config.mason") end, config = function () require("plugins.config.mason") end,
lazy = true,
event = "VimEnter",
}, },
{ {
"williamboman/mason-lspconfig.nvim", "williamboman/mason-lspconfig.nvim",
config = function () require("plugins.config.mason_lspconfig") end, config = function () require("plugins.config.mason_lspconfig") end,
lazy = true,
event = "VimEnter",
}, },
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",