Files
dotfiles/env/.config/nvim/after/plugin/harpoon.lua
iceyrazor 989269f4d5 Squashed commit of the following:
- customized tmux bar
    - swapped harpoon keys
    - fixed exit terminal key
    - removed trailing commas in waybar config
    - neovim
        - added proj search
        - added notes bind
        - bind to exit term (doesnt really work for me)
        - auto cwd OF file dir OR git main dir WHEN bufenter and bind
    - swaped tmux move keys
    - changed showmethekey windowrule
2025-07-29 16:20:22 -05:00

15 lines
498 B
Lua
Executable File

local ok, _ = pcall(require, 'harpoon.mark')
if ok then
local mark = require("harpoon.mark")
local ui = require("harpoon.ui")
vim.keymap.set("n","<leader>a", mark.add_file)
vim.keymap.set("n","<C-e>", ui.toggle_quick_menu)
vim.keymap.set("n","<C-t>", function() ui.nav_file(1) end)
vim.keymap.set("n","<C-y>", function() ui.nav_file(2) end)
vim.keymap.set("n","<C-n>", function() ui.nav_file(3) end)
vim.keymap.set("n","<C-s>", function() ui.nav_file(4) end)
end