starter/lua/plugins/harpoon.lua

23 lines
452 B
Lua
Raw Normal View History

2024-11-20 17:02:10 +08:00
return {}
2023-03-30 01:38:00 +08:00
2024-11-20 17:02:10 +08:00
--
-- return {
-- "ThePrimeagen/harpoon",
-- config = function()
-- local ui = require("harpoon.ui")
--
-- require("harpoon").setup({
-- menu = {
-- width = vim.api.nvim_win_get_width(0) - 24,
-- },
-- global_settings = {
-- mark_branch = true,
-- },
-- })
--
-- vim.keymap.set("n", "<C-c>", function()
-- ui.nav_next()
-- end, { desc = "Navigate next" })
-- end,
-- }