You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
Lua
53 lines
1.3 KiB
Lua
local harpoon = require 'harpoon'
|
|
harpoon:setup {}
|
|
|
|
-- basic telescope configuration
|
|
local conf = require('telescope.config').values
|
|
local function toggle_telescope(harpoon_files)
|
|
local file_paths = {}
|
|
for _, item in ipairs(harpoon_files.items) do
|
|
table.insert(file_paths, item.value)
|
|
end
|
|
|
|
require('telescope.pickers')
|
|
.new({}, {
|
|
prompt_title = 'Harpoon',
|
|
finder = require('telescope.finders').new_table {
|
|
results = file_paths,
|
|
},
|
|
previewer = conf.file_previewer {},
|
|
sorter = conf.generic_sorter {},
|
|
})
|
|
:find()
|
|
end
|
|
|
|
vim.keymap.set('n', '<C-e>', function()
|
|
toggle_telescope(harpoon:list())
|
|
end, { desc = 'Open harpoon window' })
|
|
|
|
vim.keymap.set('n', '<leader>ah', function()
|
|
harpoon:list():add()
|
|
end)
|
|
-- vim.keymap.set("n", "<C-e>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
|
|
|
vim.keymap.set('n', '<C-h>', function()
|
|
harpoon:list():select(1)
|
|
end)
|
|
vim.keymap.set('n', '<C-t>', function()
|
|
harpoon:list():select(2)
|
|
end)
|
|
vim.keymap.set('n', '<C-n>', function()
|
|
harpoon:list():select(3)
|
|
end)
|
|
vim.keymap.set('n', '<C-s>', function()
|
|
harpoon:list():select(4)
|
|
end)
|
|
|
|
-- Toggle previous & next buffers stored within Harpoon list
|
|
vim.keymap.set('n', '<C-S-P>', function()
|
|
harpoon:list():prev()
|
|
end)
|
|
vim.keymap.set('n', '<C-S-N>', function()
|
|
harpoon:list():next()
|
|
end)
|