From 20dedf93000ec32205bf5ea4c35e6cce34a68e2e Mon Sep 17 00:00:00 2001 From: Binciu Viorel Date: Tue, 1 Oct 2024 13:58:50 +0300 Subject: [PATCH] feat: Added nvim surround --- lua/plugins/nvim-surround.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/nvim-surround.lua diff --git a/lua/plugins/nvim-surround.lua b/lua/plugins/nvim-surround.lua new file mode 100644 index 0000000..b9ee8f7 --- /dev/null +++ b/lua/plugins/nvim-surround.lua @@ -0,0 +1,10 @@ +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, +}