Jalil David Salamé Messina
cc02c89661
Also reorganize out of tree plugins in preparation for `vim-plugin-updater` integration.
15 lines
301 B
Nix
15 lines
301 B
Nix
{
|
|
vimUtils,
|
|
fetchFromGitHub,
|
|
silicon,
|
|
}:
|
|
vimUtils.buildVimPlugin {
|
|
name = "nvim-silicon";
|
|
dependencies = [silicon];
|
|
src = fetchFromGitHub {
|
|
owner = "michaelrommel";
|
|
repo = "nvim-silicon";
|
|
rev = "v1.0.0";
|
|
hash = "sha256-cZOzgzLUNC9qOS2m/rc6YJfpNGdRTSCAdEPQDy+wT6I=";
|
|
};
|
|
}
|