fixed surround configuration

This commit is contained in:
2025-01-03 15:40:18 +01:00
parent a7db2033d9
commit 2124801985

View File

@@ -1,6 +1,11 @@
return { return {
"kylechui/nvim-surround", "kylechui/nvim-surround",
event = { "BufReadPre", "BufNewFile" }, -- event = { "BufReadPre", "BufNewFile" },
event = "VeryLazy",
version = "*", -- Use for stability; omit to use `main` branch for the latest features version = "*", -- Use for stability; omit to use `main` branch for the latest features
config = true, config = function()
require("nvim-surround").setup({
-- use defaults
})
end,
} }