1
0
Fork 0

nvim: add diffview
All checks were successful
Update Flake / update-flake (push) Successful in 2m36s
Build / build-amd64-linux (push) Successful in 39s
Build / build-arm64-linux (push) Successful in 1m44s

This commit is contained in:
Daniel Kempkens 2023-12-29 01:50:07 +01:00
parent 81c0b21d48
commit 00b61fb9cb
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 32 additions and 18 deletions

View file

@ -321,6 +321,14 @@ in
type = "fennel";
}
diffview-nvim
{
plugin = neogit;
config = builtins.readFile ../../config/nvim/plugins/neogit.fnl;
type = "fennel";
}
{
plugin = fidget-nvim;
config = builtins.readFile ../../config/nvim/plugins/fidget.fnl;
@ -332,12 +340,6 @@ in
config = builtins.readFile ../../config/nvim/plugins/which-key.fnl;
type = "fennel";
}
{
plugin = neogit;
config = builtins.readFile ../../config/nvim/plugins/neogit.fnl;
type = "fennel";
}
] ++ optionals isDarwin [
{
plugin = pkgs.vimPlugins.cmp-tabnine;

View file

@ -525,6 +525,28 @@ in
fetchSubmodules = false;
};
};
neogit = buildVimPlugin {
pname = "neogit";
version = "2023-12-28";
src = fetchFromGitHub {
owner = "NeogitOrg";
repo = "neogit";
rev = "3718664bb62e89930f0c3c836188c2a4f44fa119";
sha256 = "09idnas2cnpkbgk685pbk6kpmpj5xm8p622kldak5dq4nlh63zwa";
fetchSubmodules = false;
};
};
diffview-nvim = buildVimPlugin {
pname = "diffview.nvim";
version = "2023-11-20";
src = fetchFromGitHub {
owner = "sindrets";
repo = "diffview.nvim";
rev = "3dc498c9777fe79156f3d32dddd483b8b3dbd95f";
sha256 = "1zvgm0icmc4z48vnd6pn7pvl6sg89mm4symr0rwiix8s942nfiyw";
fetchSubmodules = false;
};
};
fidget-nvim = buildVimPlugin {
pname = "fidget.nvim";
version = "2023-12-28";
@ -547,15 +569,4 @@ in
fetchSubmodules = false;
};
};
neogit = buildVimPlugin {
pname = "neogit";
version = "2023-12-28";
src = fetchFromGitHub {
owner = "NeogitOrg";
repo = "neogit";
rev = "3718664bb62e89930f0c3c836188c2a4f44fa119";
sha256 = "09idnas2cnpkbgk685pbk6kpmpj5xm8p622kldak5dq4nlh63zwa";
fetchSubmodules = false;
};
};
}

View file

@ -61,6 +61,7 @@
- src: lukas-reineke/virt-column.nvim
- src: axieax/urlview.nvim
- src: lewis6991/gitsigns.nvim
- src: sindrets/diffview.nvim
- src: NeogitOrg/neogit
- src: j-hui/fidget.nvim
- src: folke/which-key.nvim
- src: NeogitOrg/neogit