nvim/lua/plugins/nvim-surround.lua 282 B raw
1
return {
2
    "kylechui/nvim-surround",
3
    version = "*", -- Use for stability; omit to use `main` branch for the latest features
4
    config = function()
5
        require("nvim-surround").setup({
6
            -- Configuration here, or leave empty to use defaults
7
        })
8
    end
9
}