✨ feat(nvim): add a file to disable plugins easily
This commit is contained in:
parent
3d8953bf2a
commit
79d6e91506
1 changed files with 20 additions and 0 deletions
20
.config/nvim/lua/plugins/disabled.lua
Normal file
20
.config/nvim/lua/plugins/disabled.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
-- 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
|
Loading…
Add table
Reference in a new issue