From 7aa69de8a82f81cd1224d511e7d9017bb599010d Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 03:59:36 +0100 Subject: [PATCH] feat(nvim-surround.lua): add nvim-surround plugin Add the nvim-surround plugin to the list of plugins used in the configuration. This plugin provides convenient mappings and commands for manipulating surrounding characters. The plugin is sourced from the "kylechui/nvim-surround" repository, using the latest version available. The plugin is configured to be loaded during the "VeryLazy" event, and the necessary configuration file is required to be loaded after the plugin is initialized. --- lua/absolute/plugins/nvim-surround.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/absolute/plugins/nvim-surround.lua diff --git a/lua/absolute/plugins/nvim-surround.lua b/lua/absolute/plugins/nvim-surround.lua new file mode 100644 index 0000000..ac7ceec --- /dev/null +++ b/lua/absolute/plugins/nvim-surround.lua @@ -0,0 +1,8 @@ +return { + "kylechui/nvim-surround", + version = "*", -- Use for stability; omit to use `main` branch for the latest features + event = "VeryLazy", + config = function() + require("absolute.after.nvim-surround") + end, +}