summaryrefslogtreecommitdiff
path: root/surround.lua
diff options
context:
space:
mode:
Diffstat (limited to 'surround.lua')
-rw-r--r--surround.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/surround.lua b/surround.lua
new file mode 100644
index 0000000..0b5abe6
--- /dev/null
+++ b/surround.lua
@@ -0,0 +1,12 @@
+return {
+ {
+ "kylechui/nvim-surround",
+ version = "^3.0.0", -- Use for stability; omit to use `main` branch for the latest features
+ event = "VeryLazy",
+ config = function()
+ require("nvim-surround").setup({
+ -- Configuration here, or leave empty to use defaults
+ })
+ end,
+ },
+}