From 286a2f7ebe5e58a24ef1da7668b46bb55ddfbf3b Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 04:00:45 +0100 Subject: [PATCH] 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. --- lua/absolute/after/nvim-surround.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lua/absolute/after/nvim-surround.lua diff --git a/lua/absolute/after/nvim-surround.lua b/lua/absolute/after/nvim-surround.lua new file mode 100644 index 0000000..d714190 --- /dev/null +++ b/lua/absolute/after/nvim-surround.lua @@ -0,0 +1,3 @@ +local surround = require("nvim-surround") + +surround.setup({})