Adding mdx.nvim
#371
-
|
I found a simple plugin to enable some "plugins-mdx-nvim" = {
url = "github:davidmh/mdx.nvim";
flake = false;
};Then add it to my categories, and I can confirm it is in my system with Add I see that it defines a What am I not understanding here? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
it does appear that you do have to call The instructions they give for lazy.nvim also just download it and call |
Beta Was this translation helpful? Give feedback.
-
|
I'm having the worst experience with substitute.nvim. The name is I can't see what would be wrong. The name looks right in both the require and packadd. I don't think I see a typo. |
Beta Was this translation helpful? Give feedback.
you have the name wrong.
mdx-nvimnotmdx.nvimdefault lze load function just calls packadd on that string, so if its wrong it doesnt packadd it
The name to use is this one from nixCats.pawsible (it comes from the pname of the derivation, sometimes different from the URL, especially when it has dots)
In your case, that is the name because it is pulling that name from your flake inputs
It just removes
plugins-and then the rest is the new nameYou should leave it as
-instead of.or you wont be able tonix flake update pl…