mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-03 02:24:26 +02:00
WIP!
This commit is contained in:
parent
d350db2449
commit
304f4a6564
4 changed files with 58 additions and 22 deletions
18
after/plugin/harpoon.lua
Normal file
18
after/plugin/harpoon.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
local mark = require 'harpoon.mark'
|
||||
local ui = require 'harpoon.ui'
|
||||
|
||||
vim.keymap.set('n', '<leader>a', mark.add_file, { desc = 'Mark [A] file for Harpoon' })
|
||||
vim.keymap.set('n', '<A-h>', ui.toggle_quick_menu)
|
||||
|
||||
vim.keymap.set('n', '<A-j>', function()
|
||||
ui.nav_file(1)
|
||||
end)
|
||||
vim.keymap.set('n', '<A-k>', function()
|
||||
ui.nav_file(2)
|
||||
end)
|
||||
vim.keymap.set('n', '<A-l>', function()
|
||||
ui.nav_file(3)
|
||||
end)
|
||||
vim.keymap.set('n', '<A-;>', function()
|
||||
ui.nav_file(4)
|
||||
end)
|
Loading…
Add table
Add a link
Reference in a new issue