devcontainer/config/nvim/plugins/disabled.lua

22 lines
398 B
Lua
Raw Normal View History

2024-12-12 19:42:39 +00:00
-- Disable unused plugins and functionality.
2024-09-24 17:24:17 +00:00
return {
{
2024-12-12 19:42:39 +00:00
-- Disable the dashboard.
2024-11-24 09:34:24 +00:00
"folke/snacks.nvim",
2024-12-19 18:22:24 +00:00
opts = {
dashboard = { enabled = false },
},
2024-09-24 17:24:17 +00:00
},
2024-12-12 19:42:39 +00:00
{
-- Disable inline hints by default.
"neovim/nvim-lspconfig",
opts = {
inlay_hints = { enabled = false },
},
},
2024-12-19 18:22:24 +00:00
-- Disable unused plugins.
{ "flash.nvim", enabled = false },
{ "bufferline.nvim", enabled = false },
2024-09-24 17:24:17 +00:00
}