From 20262d896b37e867e432302d0ab3940b110c4900 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 26 Mar 2024 20:28:51 -0400 Subject: [PATCH] added nvim-surround --- lua/plugins/surround.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lua/plugins/surround.lua diff --git a/lua/plugins/surround.lua b/lua/plugins/surround.lua new file mode 100644 index 0000000..655d9f5 --- /dev/null +++ b/lua/plugins/surround.lua @@ -0,0 +1,6 @@ +return { + "kylechui/nvim-surround", + version = "*", + event = "VeryLazy", + config = function() require("nvim-surround").setup {} end, +}