feat: update nvim config
Some checks failed
Container build / container-build (push) Failing after 1m21s

This commit is contained in:
Job
2024-12-19 19:22:24 +01:00
parent 9d90ea60f2
commit 09af0db185
4 changed files with 12 additions and 27 deletions

View File

@@ -3,14 +3,9 @@ return {
{
-- Disable the dashboard.
"folke/snacks.nvim",
opts = function(_, opts)
opts.dashboard = { enabled = false }
end,
},
{
-- Disable the bufferline.
"bufferline.nvim",
enabled = false,
opts = {
dashboard = { enabled = false },
},
},
{
-- Disable inline hints by default.
@@ -19,4 +14,8 @@ return {
inlay_hints = { enabled = false },
},
},
-- Disable unused plugins.
{ "flash.nvim", enabled = false },
{ "bufferline.nvim", enabled = false },
}

View File

@@ -1,11 +0,0 @@
-- Configure lsp settings.
return {
{
"saghen/blink.cmp",
opts = {
keymap = {
preset = "default",
},
},
},
}