mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-09 12:35:04 +02:00
Add snacks
This commit is contained in:
parent
a6f2588d65
commit
1c53a038f4
2 changed files with 18 additions and 3 deletions
18
init.lua
18
init.lua
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue