configuration.nix/nvim/extraPlugins/nvim-silicon.nix

16 lines
301 B
Nix
Raw Normal View History

{
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=";
};
}