From bbccd0563ea7032d8d48cd989cdf2f8c888f8a2b Mon Sep 17 00:00:00 2001
From: "Kenneth Benzie (Benie)" <benie@infektor.net>
Date: Sun, 3 Mar 2024 22:13:22 +0000
Subject: [PATCH] Remove useless comment

---
 lua/plugins/surround.lua | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lua/plugins/surround.lua b/lua/plugins/surround.lua
index 4923fc8..477144c 100644
--- a/lua/plugins/surround.lua
+++ b/lua/plugins/surround.lua
@@ -3,8 +3,6 @@ return{
   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
-    })
+    require("nvim-surround").setup({})
   end
 }