fix: disable snacks dashboard
All checks were successful
Container build / container-build (push) Successful in 3m29s

This commit is contained in:
Job 2024-11-24 10:34:24 +01:00
parent a1332e1f69
commit 5bc72a6fb3
Signed by: Job79
SSH Key Fingerprint: SHA256:BezbKv3jZaqu7SdNrZM0e42b8nlNwh63zaVj/pUxc7U
2 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,7 @@ keymap("v", "L", "$", opts)
-- Better escape
keymap("n", "<ESC>", "<ESC>:noh<CR>", opts)
keymap("t", "", "<C-\\>", opts)
-- Disable alt j/k to move lines
delkeymap({ "i", "v" }, "<A-j>")

View File

@ -1,8 +1,10 @@
-- Disable some unneeded plugins by default.
return {
{
"nvimdev/dashboard-nvim",
enabled = false,
"folke/snacks.nvim",
opts = function(_, opts)
opts.dashboard = { enabled = false }
end,
},
{
"bufferline.nvim",