summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua
blob: f3e01741a9e015c107ac0e8f4655af178237311b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
	"echasnovski/mini.surround",
	version = "*",
	init = function()
		local wk = require("which-key")
		wk.add({
			mode = { "n", "v" },
			{ "s", group = "Surround/Search & replace on line" },
		})
	end,
	config = function()
		require("mini.surround").setup()
	end,
}