From bb11a12f252b0a0ea80d94c980fadafc6066d2b4 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 20 Jun 2025 23:27:52 +0200 Subject: [PATCH] nvim: Remove criticmarkup Sad but I'll have to face it - I've never successfully used criticmarkup in, by now, 6 years of professional academic writing. The plugin also does not work as well as it should (anymore?) with my current neovim setup. The `:Critic` command works neither with accept nor reject and the different highlights are presumably overwritten by treesitter queries. Now, all of those _could_ be fixed but as I say above, I have never successfully used the markup. Perhaps one day it could be implemented in a slick nvim lua plugin with hiding and extmarks which mimicks a truly nice review editing experience. But not today. --- nvim/.config/nvim/lazy-lock.json | 1 - nvim/.config/nvim/lua/plugins/prose.lua | 3 --- 2 files changed, 4 deletions(-) diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json index 5fe3404..ae3021e 100644 --- a/nvim/.config/nvim/lazy-lock.json +++ b/nvim/.config/nvim/lazy-lock.json @@ -85,7 +85,6 @@ "typst-preview.nvim": { "branch": "master", "commit": "dea4525d5420b7c32eebda7de15a6beb9d6574fa" }, "undotree": { "branch": "main", "commit": "eab459ab87dd249617b5f7187bb69e614a083047" }, "vifm.vim": { "branch": "master", "commit": "617e3dc7c9af1f03cc664124aff2fe98fafcf1b2" }, - "vim-criticmarkup": { "branch": "master", "commit": "d15dc134eb177a170c79f6377f81eb02a9d20b02" }, "vim-numbertoggle": { "branch": "main", "commit": "df9b1fe616507340718716204ba7f434125bdf7a" }, "vim-spellsync": { "branch": "master", "commit": "ea9f431483ceb40ede8bd5b126a03eccd49b1bc0" }, "wezterm.nvim": { "branch": "main", "commit": "f73bba23ab4becd146fa2d0a3a16a84b987eeaca" }, diff --git a/nvim/.config/nvim/lua/plugins/prose.lua b/nvim/.config/nvim/lua/plugins/prose.lua index cef2108..3a1f9b1 100644 --- a/nvim/.config/nvim/lua/plugins/prose.lua +++ b/nvim/.config/nvim/lua/plugins/prose.lua @@ -285,9 +285,6 @@ local prose_plugs = { }, }, - -- syntax highlighting for markdown criticmarkup (comments, additions, ...) - { "vim-pandoc/vim-criticmarkup", ft = md_like }, - -- create mindmaps from your markdown { "Zeioth/markmap.nvim",