devcontainer/config/nvim/plugins/disabled.lua

23 lines
390 B
Lua

-- Disable unused plugins and functionality.
return {
{
-- Disable the dashboard.
"folke/snacks.nvim",
opts = function(_, opts)
opts.dashboard = { enabled = false }
end,
},
{
-- Disable the bufferline.
"bufferline.nvim",
enabled = false,
},
{
-- Disable inline hints by default.
"neovim/nvim-lspconfig",
opts = {
inlay_hints = { enabled = false },
},
},
}