Neovim: started rework on the conifg, changed a bunch of stuff

This commit is contained in:
Kyren223
2024-07-06 20:07:41 +03:00
parent 7166c238e8
commit 39d1990952
49 changed files with 165 additions and 178 deletions

View File

@@ -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,
}