From 6fc26fbe2c34d077fa4f7210000621fc3135683e Mon Sep 17 00:00:00 2001 From: Agonex Date: Mon, 19 Aug 2024 04:46:27 +0400 Subject: [PATCH] Chaged surrounder plugin --- lua/plugins/surround.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/plugins/surround.lua b/lua/plugins/surround.lua index 85e2bc6..306e551 100644 --- a/lua/plugins/surround.lua +++ b/lua/plugins/surround.lua @@ -1,3 +1,10 @@ return { - "tpope/vim-surround", + "kylechui/nvim-surround", + version = "*", + event = "VeryLazy", + config = function() + require("nvim-surround").setup({ + -- Configuration here, or leave empty to use defaults + }) + end, }