feat(plugins): add astrocore
This commit is contained in:
parent
61d8dd64fe
commit
8a438a9449
4 changed files with 278 additions and 0 deletions
22
plugins/astrocore/package/default.nix
Normal file
22
plugins/astrocore/package/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue