Compare commits

...

3 Commits

2 changed files with 5 additions and 2 deletions

View File

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

View File

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