mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 11:08:53 +02:00
We used to only think of it as the plugin repo's name, but we have been needing to use it for the name of the plugin's packpath location.
11 lines
271 B
Nix
11 lines
271 B
Nix
{ lib, ... }:
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|
name = "nui";
|
|
packPathName = "nui.nvim";
|
|
package = "nui-nvim";
|
|
description = "UI Component Library for Neovim";
|
|
maintainers = [ lib.maintainers.DataHearth ];
|
|
|
|
callSetup = false;
|
|
hasSettings = false;
|
|
}
|