vimPlugins.gruvbox-nvim: init at 2021-04-23
This commit is contained in:
parent
77485293df
commit
85c333d358
|
@ -1749,6 +1749,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 ];
|
||||||
|
|
|
@ -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 New Issue