devcontainer/config/nvim/plugins/disabled.lua
Job79 09af0db185
Some checks failed
Container build / container-build (push) Failing after 1m21s
feat: update nvim config
2024-12-19 19:22:24 +01:00

22 lines
398 B
Lua

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