Add snacks

This commit is contained in:
Hendra 2024-11-30 15:44:48 +07:00
parent a6f2588d65
commit 1c53a038f4
2 changed files with 18 additions and 3 deletions

View file

@ -136,8 +136,6 @@ vim.keymap.set('n', '<leader>c', '<cmd>bd<cr>')
vim.keymap.set('n', '<leader>h', '<cmd>bprev<cr>')
vim.keymap.set('n', '<leader>l', '<cmd>bnext<cr>')
vim.keymap.set('n', '<leader>sv', '<cmd>write<cr>', { desc = 'Sa[v]e File' })
-- delete all other buffers
vim.keymap.set('n', '<leader>C', '<cmd>%bd|e#|bd#<cr>')
-- Diagnostic keymaps
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D]iagnostic message' })
@ -914,6 +912,22 @@ require('lazy').setup({
},
},
{
'folke/snacks.nvim',
priority = 1000,
lazy = false,
opts = {},
keys = {
{
'<leader>C',
function()
Snacks.bufdelete.other()
end,
desc = 'Close other buffers',
},
},
},
-- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
-- init.lua. If you want these files, they are in the repository, so you can just download them and
-- put them in the right spots if you want.