plugins/nui: initialize

This commit is contained in:
DataHearth 2024-10-26 16:27:12 +02:00 committed by nix-infra-bot
parent 90d7deedc4
commit e7356f6be0
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ lib, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "nui";
originalName = "nui.nvim";
package = "nui-nvim";
description = "UI Component Library for Neovim";
maintainers = [ lib.maintainers.DataHearth ];
callSetup = false;
hasSettings = false;
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.nui.enable = true;
};
}