dotfiles/.config/nvim/lua/plugins/ufo.lua

14 lines
392 B
Lua

return {
{
"kevinhwang91/nvim-ufo",
config = function()
require("ufo").setup({
provider_selector = function(bufnr, filetype, buftype)
return { "treesitter", "indent" }
end,
})
end,
dependencies = "kevinhwang91/promise-async",
event = { "BufRead", "BufNewFile" },
},
}