starter/lua/plugins/nvim-surround.lua
2024-10-01 13:58:50 +03:00

10 lines
283 B
Lua

return {
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end,
}