vimPlugins.rest-nvim: init at 2022-01-26
it requires json and http treesitter grammars but not sure how best to enforce that right now.
This commit is contained in:
parent
b5b40c2133
commit
05c6180b5f
@ -5627,6 +5627,18 @@ final: prev:
|
||||
meta.homepage = "https://github.com/vim-scripts/ReplaceWithRegister/";
|
||||
};
|
||||
|
||||
rest-nvim = buildVimPluginFrom2Nix {
|
||||
pname = "rest.nvim";
|
||||
version = "2022-01-26";
|
||||
src = fetchFromGitHub {
|
||||
owner = "NTBBloodbath";
|
||||
repo = "rest.nvim";
|
||||
rev = "2826f6960fbd9adb1da9ff0d008aa2819d2d06b3";
|
||||
sha256 = "0lb3rcc41rb9yhylmkpsj141yfk1kki1xkd4q2i9y0ld0mlwjjv8";
|
||||
};
|
||||
meta.homepage = "https://github.com/NTBBloodbath/rest.nvim/";
|
||||
};
|
||||
|
||||
riv-vim = buildVimPluginFrom2Nix {
|
||||
pname = "riv.vim";
|
||||
version = "2021-08-09";
|
||||
|
@ -534,6 +534,11 @@ self: super: {
|
||||
dependencies = with self; [ nvim-treesitter plenary-nvim ];
|
||||
});
|
||||
|
||||
# needs "http" and "json" treesitter grammars too
|
||||
rest-nvim = super.rest-nvim.overrideAttrs (old: {
|
||||
dependencies = with self; [ plenary-nvim ];
|
||||
});
|
||||
|
||||
skim = buildVimPluginFrom2Nix {
|
||||
pname = "skim";
|
||||
version = skim.version;
|
||||
|
@ -563,6 +563,7 @@ norcalli/nvim-colorizer.lua
|
||||
norcalli/nvim-terminal.lua
|
||||
norcalli/snippets.nvim
|
||||
NTBBloodbath/galaxyline.nvim
|
||||
NTBBloodbath/rest.nvim
|
||||
ntpeters/vim-better-whitespace
|
||||
numirias/semshi
|
||||
numtostr/comment.nvim
|
||||
|
Loading…
Reference in New Issue
Block a user