nix-community.nixvim/plugins/by-name/nabla/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
630 B
Nix
Raw Normal View History

2024-10-16 11:48:37 +02:00
{
lib,
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkVimPlugin {
2024-10-16 11:48:37 +02:00
name = "nabla";
packPathName = "nabla.nvim";
2024-10-16 11:48:37 +02:00
package = "nabla-nvim";
description = ''
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 ];
}