disable lua snip

This commit is contained in:
Daylin Morgan 2023-05-30 12:56:18 -05:00
parent 646e65258b
commit 9c0c6c7308
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
2 changed files with 12 additions and 4 deletions

View file

@ -1,8 +1,4 @@
return {
{
"folke/tokyonight.nvim",
enabled = false,
},
{
"LazyVim/LazyVim",
version = false,

View file

@ -0,0 +1,12 @@
local function disable(plugins)
local disabled = {}
for _, plugin in ipairs(plugins) do
table.insert(disabled, { plugin, enabled = false })
end
return disabled
end
return disable({
"folke/tokyonight.nvim",
"L3MON4D3/LuaSnip",
})