From 90188991268ddbffb87026728c9b42402c1d5dfe Mon Sep 17 00:00:00 2001 From: Marcelo Date: Sun, 30 Mar 2025 04:26:45 -0300 Subject: Add vim-surround to make it easy to change surrounding characters. --- lua/config/plugins/code-editing.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/config/plugins/code-editing.lua (limited to 'lua') diff --git a/lua/config/plugins/code-editing.lua b/lua/config/plugins/code-editing.lua new file mode 100644 index 0000000..2f82f3d --- /dev/null +++ b/lua/config/plugins/code-editing.lua @@ -0,0 +1,14 @@ +return { + -- Add/change/delete surrounding delimiter pairs with ease. + { + "kylechui/nvim-surround", + event = "VeryLazy", + dependencies = { + "nvim-treesitter/nvim-treesitter", + "nvim-treesitter/nvim-treesitter-textobjects", + }, + config = function() + require("nvim-surround").setup({}) + end + }, +} -- cgit v1.2.3