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.
This commit is contained in:
David Ibia
2024-01-14 03:59:36 +01:00
parent 2a47d47b8b
commit 7aa69de8a8

View File

@@ -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,
}