summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/surround.lua
blob: a1c5b528016a72d295296c9ad188337c96ad5d76 (plain) (blame)
1
2
3
4
5
6
7
8
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 {}
    end
}