feat(plugins): add astrocore

This commit is contained in:
Nicolas Goudry 2024-06-03 23:45:15 +02:00
parent 61d8dd64fe
commit 8a438a9449
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
4 changed files with 278 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, pkgs, ... }:
let
version = "1.5.0";
in
pkgs.vimUtils.buildVimPlugin {
inherit version;
name = "astrocore";
src = pkgs.fetchFromGitHub {
owner = "astronvim";
repo = "astrocore";
rev = "v${version}";
hash = "sha256-KKNglNd3S8E11CMAS6E3vhN4oZoRh0u3rjkgHiIGozI=";
};
patches = [
./init.lua.patch
./mason.lua.patch
];
}