20 lines
322 B
Lua
20 lines
322 B
Lua
-- Delete this condition if you want to execute the file
|
|
if true then
|
|
return {}
|
|
end
|
|
|
|
-- Example of disabling some plugins. Add yours
|
|
local disabled = {
|
|
{
|
|
"akinsho/bufferline.nvim",
|
|
},
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
},
|
|
}
|
|
|
|
for i, plugin in ipairs(disabled) do
|
|
plugin.enabled = false
|
|
end
|
|
|
|
return disabled
|