mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 07:04:47 +00:00
folds
This commit is contained in:
parent
6173939113
commit
1315fed7c0
3 changed files with 23 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue