nvimdev / dashboard-nvim

vim dashboard
MIT License
2.21k stars 179 forks source link

Disable folding #386

Closed ghost closed 10 months ago

ghost commented 10 months ago

Is your feature request related to a problem? Please describe. I have my fold settings set as following:

vim.opt.foldlevel = 0
vim.opt.foldmethod = "indent"

When dashboard is open all text is folded. See screenshot below.

Describe the solution you'd like Disable the folding on dashboard screen.

Describe alternatives you've considered N/A

Additional context image

glepnir commented 10 months ago

because you set foldlevel to 0 . set to 999 to disable.

ghost commented 10 months ago

because you set foldlevel to 0 . set to 999 to disable.

Well, foldlevel is set to 0 intentionally, so when I open any code file is folded by default

jakub-gawlik commented 8 months ago

because you set foldlevel to 0 . set to 999 to disable.

This solution does not resolve the issue... I have the same requirement