summaryrefslogtreecommitdiff
path: root/lua/plugins/ufo.lua
blob: 71af4d33c554cce309dfd163c5193e7cbab1f22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
	"kevinhwang91/nvim-ufo",
	dependencies = { "kevinhwang91/promise-async" },

	config = function()
		require("ufo").setup({
			provider_selector = function(bufnr, filetype, buftype)
				return { "treesitter", "indent" }
			end,
		})
	end,
}