diff --git a/modules/plugins/git/hunk-nvim/config.nix b/modules/plugins/git/hunk-nvim/config.nix index db97d8f7..5eb41448 100644 --- a/modules/plugins/git/hunk-nvim/config.nix +++ b/modules/plugins/git/hunk-nvim/config.nix @@ -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; }; };