Merge pull request #120629 from jupblb/gruvbox-nvim
This commit is contained in:
commit
5c63565c74
3 changed files with 18 additions and 1 deletions
|
@ -1761,6 +1761,18 @@ let
|
||||||
meta.homepage = "https://github.com/gruvbox-community/gruvbox/";
|
meta.homepage = "https://github.com/gruvbox-community/gruvbox/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gruvbox-nvim = buildVimPluginFrom2Nix {
|
||||||
|
pname = "gruvbox-nvim";
|
||||||
|
version = "2021-04-23";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "npxbr";
|
||||||
|
repo = "gruvbox.nvim";
|
||||||
|
rev = "9dc9ea64fd2fb255a39210e227fc7146855434af";
|
||||||
|
sha256 = "04d8knfhidxdm8lzc15hklq1mm6i5kmdkik4iln4cbhd3cg33iqy";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/npxbr/gruvbox.nvim/";
|
||||||
|
};
|
||||||
|
|
||||||
gundo-vim = buildVimPluginFrom2Nix {
|
gundo-vim = buildVimPluginFrom2Nix {
|
||||||
pname = "gundo-vim";
|
pname = "gundo-vim";
|
||||||
version = "2021-02-21";
|
version = "2021-02-21";
|
||||||
|
|
|
@ -273,6 +273,10 @@ self: super: {
|
||||||
dependencies = with self; [ plenary-nvim ];
|
dependencies = with self; [ plenary-nvim ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
gruvbox-nvim = super.gruvbox-nvim.overrideAttrs (old: {
|
||||||
|
dependencies = with self; [ lush-nvim ];
|
||||||
|
});
|
||||||
|
|
||||||
jedi-vim = super.jedi-vim.overrideAttrs (old: {
|
jedi-vim = super.jedi-vim.overrideAttrs (old: {
|
||||||
# checking for python3 support in vim would be neat, too, but nobody else seems to care
|
# checking for python3 support in vim would be neat, too, but nobody else seems to care
|
||||||
buildInputs = [ python3.pkgs.jedi ];
|
buildInputs = [ python3.pkgs.jedi ];
|
||||||
|
@ -601,7 +605,7 @@ self: super: {
|
||||||
libiconv
|
libiconv
|
||||||
];
|
];
|
||||||
|
|
||||||
cargoSha256 = "25UkYKhlGmlDg4fz1jZHjpQn5s4k5FKlFK0MU8YM5SE=";
|
cargoSha256 = "1c8bwvwd23d7c3bk1ky1i8xgfz10dr8nqqcvp20g8rldjl8p2r08";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
|
|
|
@ -437,6 +437,7 @@ norcalli/nvim-colorizer.lua
|
||||||
norcalli/nvim-terminal.lua
|
norcalli/nvim-terminal.lua
|
||||||
norcalli/snippets.nvim
|
norcalli/snippets.nvim
|
||||||
npxbr/glow.nvim@main
|
npxbr/glow.nvim@main
|
||||||
|
npxbr/gruvbox.nvim@main
|
||||||
ntpeters/vim-better-whitespace
|
ntpeters/vim-better-whitespace
|
||||||
numirias/semshi
|
numirias/semshi
|
||||||
nvie/vim-flake8
|
nvie/vim-flake8
|
||||||
|
|
Loading…
Reference in a new issue