feat(nvim-surround.lua): add configuration for nvim-surround plugin

The `nvim-surround.lua` file was added to the `lua/absolute/after` directory. This file contains the configuration for the `nvim-surround` plugin. The `surround.setup({})` function is called to initialize the plugin with an empty configuration object. This allows the plugin to be used with default settings.
This commit is contained in:
David Ibia
2024-01-14 04:00:45 +01:00
parent 4591540449
commit 286a2f7ebe

View File

@@ -0,0 +1,3 @@
local surround = require("nvim-surround")
surround.setup({})