summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua
new file mode 100644
index 0000000..f3e0174
--- /dev/null
+++ b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/surround.lua
@@ -0,0 +1,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,
+}