---@type MappingsTable local M = {} M.general = { n = { [";"] = { ":", "enter command mode", opts = { nowait = true } }, -- harpoon ["H"] = {function() require("harpoon.ui").toggle_quick_menu() end, "Open Harpoon" }, ["a"] = {function() require("harpoon.mark").add_file() end, "Add file to Harpoon"}, ["s"] = {function() require("harpoon.ui").nav_file(1) end, "Switch to file 1"}, ["d"] = {function() require("harpoon.ui").nav_file(2) end, "Switch to file 2"}, ["f"] = {function() require("harpoon.ui").nav_file(3) end, "Switch to file 3"}, ["g"] = {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