feat(plugins): add astroui
This commit is contained in:
parent
ab1c96edc9
commit
42d32eb2e4
2 changed files with 269 additions and 0 deletions
17
plugins/astroui/package/default.nix
Normal file
17
plugins/astroui/package/default.nix
Normal 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=";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue