From 69b19abf8eed7764675a64706e22d2b8d35a95e9 Mon Sep 17 00:00:00 2001 From: xesc Date: Thu, 25 Jul 2024 08:22:07 +0200 Subject: [PATCH] add surround plugin --- lua/plugin/surround.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/plugin/surround.lua diff --git a/lua/plugin/surround.lua b/lua/plugin/surround.lua new file mode 100644 index 0000000..32a0f63 --- /dev/null +++ b/lua/plugin/surround.lua @@ -0,0 +1,12 @@ +return { + { + "kylechui/nvim-surround", + version = "*", -- 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 + } +}