@buherator “Those who do not understand Unix^Worg-mode are condemned to reinvent it, poorly.”
@buherator have a look into lazyvim. Its there by default, though i dont know which plugin it is.
@buherator Not sure of vim/neovim but atleast on emacs there's the hl-todo package (https://github.com/tarsius/hl-todo) by @tarsius #emacs
@buherator Vim has this capability built in. e.g. if you create a file at .vim/after/ftplugin/markdown.vim containing the line:
```
syntax keyword ErrorMsg TODO
```
Then that will highlight that string with the existing ErrorMsg highlight group in Markdown files. Execute `:hi` to see other groups you can use, or you can create custom ones too.
@buherator the org prefix is a hint what the original purpose was, and since it is about organizing, TODO is automatically highlighted, you can even have small [] checkboxes which you can check/uncheck, and top of the section will give you a nice percentage of how many subtasks are already completed. hiliting TODO in md is a very poor reimplementation of this. org-mode is amazing 4 organizing thoughts & todos. also very nice for latex beamer presentations & blog posts, but that is another story.