Compare commits

...

4 commits

Author SHA1 Message Date
raf
0c9b4d0d80
Merge pull request #1020 from NotAShelf/hunk
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
git/hunk-nvim: add missing UI dependency
2025-07-19 18:38:47 +03:00
raf
ec37a8be0e
Merge branch 'main' into hunk 2025-07-19 18:38:30 +03:00
7c1f5db3a5
git/hunk-nvim: add missing UI dependency
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a69645f227bef24e5e8481dcd4727623e710f
2025-07-19 18:37:32 +03:00
79d5661547
git/hunk-nvim: add missing UI dependency
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a69645f227bef24e5e8481dcd4727623e710f
2025-07-19 17:48:01 +03:00

View file

@ -9,10 +9,16 @@
in {
config = mkIf cfg.enable {
vim = {
startPlugins = [
# dependencies
"nui-nvim" # ui library
"nvim-web-devicons" # glyphs
];
lazy.plugins = {
"hunk-nvim" = {
package = "hunk-nvim";
setupModule = "gitlinker";
setupModule = "hunk";
inherit (cfg) setupOpts;
};
};