summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/marks.lua
blob: d59d0f1eff63287780f161a6b7483632714d71fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
	"chentoast/marks.nvim",
	config = function()
		require("marks").setup()
	end,
	init = function()
		local wk = require("which-key")
		wk.add({
			{
				mode = { "n", "v" },
				{ "m", group = "Marks" },
				{ "dm", desc = "Delete marks" },
			},
		})
	end,
}