1
0
Fork 0
forked from foxora/nix

added git stuff to neovim config

This commit is contained in:
foxora 2026-03-04 18:08:06 +00:00
parent 86fcbcbfbb
commit 6a3c29ef39
4 changed files with 50 additions and 2 deletions

View file

@ -16,4 +16,20 @@
});
hyprland-git = inputs.hyprland-git.packages.${system};
vimPlugins =
(super.vimPlugins or {})
// {
resolve-nvim = super.vimUtils.buildVimPlugin rec {
pname = "resolve-nvim";
src = super.fetchFromGitHub {
owner = "spacedentist";
repo = "resolve.nvim";
rev = "1ed8bcc9ce7d43a0e8e05d0001c9cadb822d95a8";
sha256 = "1h359zv3hcbg81plch1j1hs9nxpi719ygl2slkfdqigz406r9q86";
};
doCheck = false;
version = builtins.toString (src.lastModified or "master");
};
};
})