14 lines
400 B
Nix
14 lines
400 B
Nix
self: super: {
|
|
vimPlugins = super.vimPlugins // {
|
|
gitea-nvim = super.vimUtils.buildVimPlugin {
|
|
pname = "gitea-nvim";
|
|
version = "1.0.0";
|
|
src = super.fetchgit {
|
|
url = "https://git.cloonar.com/Cloonar/gitea.nvim.git";
|
|
rev = "4927f0b2ec9b5c489bbffae4e58d72c0ad047590";
|
|
sha256 = "sha256-8C8tUzOP6oy+KxyDthdYrmfoppfz+BSXrrVpVwi5X58=";
|
|
};
|
|
};
|
|
};
|
|
}
|