mirror of
https://github.com/pnx/dotfiles
synced 2026-08-24 03:58:13 +02:00
18 lines
434 B
Lua
18 lines
434 B
Lua
return {
|
|
'kevinhwang91/nvim-ufo',
|
|
event = "BufEnter",
|
|
dependencies = {
|
|
'kevinhwang91/promise-async',
|
|
},
|
|
opts = {
|
|
close_fold_kinds_for_ft = {
|
|
php = {'namespace_use_declaration'}
|
|
},
|
|
provider_selector = function(bufnr, filetype, buftype)
|
|
_ = bufnr
|
|
_ = filetype
|
|
_ = buftype
|
|
return {'treesitter', 'indent'}
|
|
end
|
|
}
|
|
}
|