summaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/folding.lua
blob: 9b3020440ccafef4b9b603c60f4be8e3d7299e75 (plain) (blame)
1
2
3
4
5
6
7
8
return {
	"nicolas-martin/region-folding.nvim",
	event = { "BufReadPost", "BufNewFile" },
	opts = {
		region_text = { start = "{{{", ending = "}}}" },
		fold_indicator = "▼",
	},
}