mine-hyprdots/.config/nvim/lua/plugins/surround.lua

11 lines
271 B
Lua
Raw Normal View History

2024-09-12 22:26:43 +05:30
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,
}