nvim/lua/plugins/surround.lua

9 lines
272 B
Lua

return {
'kylechui/nvim-surround',
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy", -- FIXME: Causes splash screen to disappear on startup
config = function()
require("nvim-surround").setup({})
end
}