Neovim: started rework on the conifg, changed a bunch of stuff
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
return {
|
||||
'ThePrimeagen/harpoon',
|
||||
branch = 'harpoon2',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
config = function()
|
||||
local harpoon = require('harpoon')
|
||||
harpoon:setup()
|
||||
|
||||
vim.keymap.set('n', '<leader>a', function()
|
||||
harpoon:list():add()
|
||||
end)
|
||||
vim.keymap.set('n', '<C-e>', function()
|
||||
harpoon.ui:toggle_quick_menu(harpoon:list())
|
||||
end)
|
||||
|
||||
for i = 1, 9 do
|
||||
vim.keymap.set('n', '<C-F' .. i .. '>', function()
|
||||
harpoon:list():select(i)
|
||||
end)
|
||||
end
|
||||
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user