},
opts = {}
},
- { "echasnovski/mini.hipatterns", -- highlight hex colours and other matched words
+ { "nvim-mini/mini.hipatterns", -- highlight hex colours and other matched words
event = { "BufReadPost", "BufNewFile", "BufWritePre" },
opts = function()
local hi = require("mini.hipatterns")
}
end,
},
+ { "nvim-mini/mini.operators", -- text edit operators
+ opts = {},
+ },
{ "folke/flash.nvim",
-- Flash enhances the built-in search functionality by showing labels
-- at the end of each match, letting you quickly jump to a specific
end,
},
},
+ { "chrisgrieser/nvim-origami", -- fold with elegance
+ event = "VeryLazy",
+ opts = {
+ foldKeymaps = { setup = false },
+ foldtext = {
+ padding = 1,
+ lineCount = {
+ template = "… %d lines"
+ }
+ }
+ },
+ init = function()
+ -- disable vim's folding
+ vim.opt.foldlevel = 99
+ vim.opt.foldlevelstart = 99
+ end
+ },
-- TODO: currently unused plugins, check and enable/remove
{ "MagicDuck/grug-far.nvim", enabled = false,