forked from foxora/nix
added git stuff to neovim config
This commit is contained in:
parent
86fcbcbfbb
commit
6a3c29ef39
4 changed files with 50 additions and 2 deletions
16
overlays.nix
16
overlays.nix
|
|
@ -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");
|
||||
};
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue