feat(plugins): add astroui

This commit is contained in:
Nicolas Goudry 2024-06-05 14:45:25 +02:00
parent ab1c96edc9
commit 42d32eb2e4
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
2 changed files with 269 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, pkgs, ... }:
let
version = "2.1.4";
in
pkgs.vimUtils.buildVimPlugin {
inherit version;
name = "astroui";
src = pkgs.fetchFromGitHub {
owner = "astronvim";
repo = "astroui";
rev = "v${version}";
hash = "sha256-nmcqJq4L6XFrgrORan5x+WCwSfU3FC4D6Zux45YnIUQ=";
};
}