feat: add nvim config

This commit is contained in:
Job
2025-01-02 15:14:07 +01:00
commit 725137fca2
9 changed files with 176 additions and 0 deletions

25
lua/plugins/disabled.lua Normal file
View File

@@ -0,0 +1,25 @@
-- Disable unused plugins and functionality.
return {
{
-- Disable the dashboard.
"folke/snacks.nvim",
opts = {
dashboard = { enabled = false },
notifier = { level = vim.log.levels.WARN },
},
},
{
-- Disable inline hints by default.
"neovim/nvim-lspconfig",
opts = {
inlay_hints = { enabled = false },
},
},
-- Disable unused plugins.
{ "folke/flash.nvim", enabled = false },
{ "folke/todo-comments.nvim", enabled = false },
{ "folke/trouble.nvim", enabled = false },
{ "MagicDuck/grug-far.nvim", enabled = false },
{ "akinsho/bufferline.nvim", enabled = false },
}