mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-04 18:28:02 +00:00
18 lines
503 B
Lua
18 lines
503 B
Lua
return {
|
|
{ -- folds
|
|
"kevinhwang91/nvim-ufo",
|
|
dependencies = "kevinhwang91/promise-async",
|
|
init = function()
|
|
vim.o.foldcolumn = "1" -- '0' is not bad
|
|
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
|
|
end,
|
|
config = true,
|
|
},
|
|
-- lspconfig for nvim-ufo
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
dependencies = "kevinhwang91/nvim-ufo", -- enable LSP-based folds
|
|
},
|
|
}
|