]> git.rmz.io Git - dotfiles.git/blobdiff - nvim/lua/plugins/editor.lua
nvim: use nvim-origami for folds
[dotfiles.git] / nvim / lua / plugins / editor.lua
index cb18528f7f5e97106c4f9ce2a74486eb4dc79b3c..249ac6d16f9745bcf2375f29585af5da5e2b7ae9 100644 (file)
@@ -83,6 +83,20 @@ return {
     },
     opts = {}
   },
+  { "nvim-mini/mini.hipatterns",  -- highlight hex colours and other matched words
+    event = { "BufReadPost", "BufNewFile", "BufWritePre" },
+    opts = function()
+      local hi = require("mini.hipatterns")
+      return {
+        highlighters = {
+          hex_color = hi.gen_highlighter.hex_color({ priority = 2000 }),
+        },
+      }
+    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
@@ -168,6 +182,23 @@ return {
       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,
@@ -192,7 +223,4 @@ return {
       },
     },
   },
-  { "aymericbeaumet/vim-symlink",
-    dependencies = { "moll/vim-bbye" }, -- NOTE: Snacks.buddelete also provides this
-  },
 }