configuration.nix/nvim/extraPlugins/nvim-silicon.nix
Jalil David Salamé Messina 0883f5bf03
All checks were successful
/ check (push) Successful in 29s
/ build (docs) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 22s
/ build (nvim) (push) Successful in 14s
[fix] nvim: give nvim access to the silicon binary
Marking it as a dependency of `nvim-silicon` is not enough.
2024-06-18 16:30:08 +02:00

13 lines
262 B
Nix

{
vimUtils,
fetchFromGitHub,
}:
vimUtils.buildVimPlugin {
name = "nvim-silicon";
src = fetchFromGitHub {
owner = "michaelrommel";
repo = "nvim-silicon";
rev = "v1.0.0";
hash = "sha256-cZOzgzLUNC9qOS2m/rc6YJfpNGdRTSCAdEPQDy+wT6I=";
};
}