This commit is contained in:
Harivansh Rathi 2026-02-18 10:08:18 -05:00
parent 6173939113
commit 1315fed7c0
3 changed files with 23 additions and 0 deletions

View file

@ -52,6 +52,22 @@ return {
opts = {},
},
-- Folds
{
"kevinhwang91/nvim-ufo",
dependencies = { "kevinhwang91/promise-async" },
event = "BufReadPost",
opts = {
provider_selector = function()
return { "treesitter", "indent" }
end,
},
keys = {
{ "zR", function() require("ufo").openAllFolds() end, desc = "Open all folds" },
{ "zM", function() require("ufo").closeAllFolds() end, desc = "Close all folds" },
},
},
-- Supermaven AI completion
{
"supermaven-inc/supermaven-nvim",