mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-13 04:21:10 +01:00
15 lines
245 B
Nix
15 lines
245 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
with lib;
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "preview";
|
|
package = "Preview-nvim";
|
|
description = "Neovim wrapper around MD-TUI.";
|
|
|
|
hasSettings = false;
|
|
|
|
maintainers = [ maintainers.GaetanLepage ];
|
|
}
|