You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
Lua
37 lines
1.1 KiB
Lua
return {
|
|
{
|
|
"kevinhwang91/nvim-ufo",
|
|
dependencies = { "kevinhwang91/promise-async" },
|
|
event = "BufEnter",
|
|
config = function()
|
|
-- Fold options
|
|
vim.o.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]]
|
|
vim.o.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
|
|
vim.o.foldlevelstart = 99
|
|
vim.o.foldenable = true
|
|
require("ufo").setup()
|
|
end,
|
|
opts = {
|
|
preview = {
|
|
win_config = {
|
|
border = { "", "─", "", "", "", "─", "", "" },
|
|
winhighlight = "Normal:Folded",
|
|
winblend = 0,
|
|
},
|
|
mappings = {
|
|
scrollB = "<C-b>",
|
|
scrollF = "<C-f>",
|
|
scrollU = "<C-u>",
|
|
scrollD = "<C-d>",
|
|
jumpTop = "[",
|
|
jumpBot = "]",
|
|
},
|
|
},
|
|
provider_selector = function(_, filetype, buftype)
|
|
return (filetype == "" or buftype == "nofile") and "indent" -- only use indent until a file is opened
|
|
or { "treesitter", "indent" } -- if file opened, try to use treesitter if available
|
|
end,
|
|
},
|
|
},
|
|
}
|