---@type MappingsTable local M = {} M.general = { n = { -- harpoon ["H"] = {function() require("harpoon.ui").toggle_quick_menu() end, "Open Harpoon" }, ["ha"] = {function() require("harpoon.mark").add_file() end, "Add file to Harpoon"}, ["hs"] = {function() require("harpoon.ui").nav_file(1) end, "Switch to file 1"}, ["hd"] = {function() require("harpoon.ui").nav_file(2) end, "Switch to file 2"}, ["hf"] = {function() require("harpoon.ui").nav_file(3) end, "Switch to file 3"}, ["hg"] = {function() require("harpoon.ui").nav_file(4) end, "Switch to file 4"}, -- navigation [""] = {"zz", "1/2 page down"}, [""] = {"zz", "1/2 page up" }, ["n"] = {"nzz", "find next"}, ["N"] = {"Nzz", "find prev"}, }, } -- more keybinds! return M