Compare commits

..

3 Commits

2 changed files with 5 additions and 2 deletions

View File

@ -42,10 +42,10 @@ return {
harpoon:list():remove()
end, { desc = '[H]arpoon [R]emove' })
-- Toggle previous & next buffers stored within Harpoon list
vim.keymap.set('n', '<C-S-P>', function()
vim.keymap.set('n', '<C-S-p>', function()
harpoon:list():prev()
end)
vim.keymap.set('n', '<C-S-N>', function()
vim.keymap.set('n', '<C-S-n>', function()
harpoon:list():next()
end)
end,

View File

@ -26,6 +26,9 @@ return {
},
-- Autoinstall languages that are not installed
auto_install = true,
ignore_install = {
'arduino',
},
-- Enable autotags and -rename
autotag = {
enable = true,