1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/plugins/by-name/nabla/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

32 lines
659 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkVimPlugin {
name = "nabla";
package = "nabla-nvim";
description = ''
An ASCII math generator from LaTeX equations.
---
You can bind the popup action like so:
```nix
keymaps = [
{
key = "<leader>p";
action.__raw = "require('nabla').popup";
}
];
```
You can also wrap an explicit call to `popup` in a `function() ... end` in order to provide
a `border` option.
See [README](https://github.com/jbyuki/nabla.nvim/?tab=readme-ov-file#configuration) for more
information.
'';
maintainers = [ lib.maintainers.GaetanLepage ];
}