Nvim: add ufo fold plugin

This commit is contained in:
Marko Korhonen 2023-09-20 16:23:52 +03:00
parent bf072046bf
commit af6c34baaa
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
5 changed files with 32 additions and 1 deletions

View file

@ -212,6 +212,13 @@ local plugins = {
config = require("plugins.dashboard"),
dependencies = { { "kyazdani42/nvim-web-devicons" } },
},
-- Better folds
{
"kevinhwang91/nvim-ufo",
dependencies = { "kevinhwang91/promise-async" },
config = require("plugins.ufo"),
},
}
local lazy_opts = {}