Job79
5bc72a6fb3
All checks were successful
Container build / container-build (push) Successful in 3m29s
14 lines
207 B
Lua
14 lines
207 B
Lua
-- Disable some unneeded plugins by default.
|
|
return {
|
|
{
|
|
"folke/snacks.nvim",
|
|
opts = function(_, opts)
|
|
opts.dashboard = { enabled = false }
|
|
end,
|
|
},
|
|
{
|
|
"bufferline.nvim",
|
|
enabled = false,
|
|
},
|
|
}
|