From 54802bec7c0050ba1dce0cafe630dd2030f49d7b Mon Sep 17 00:00:00 2001 From: XYenon Date: Wed, 5 Nov 2025 15:41:07 +0800 Subject: [PATCH] fix: zsh-fast-syntax-highlighting path https://github.com/NixOS/nixpkgs/pull/101007 --- modules/programs/zsh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix index 9dc624a..0ad0f74 100644 --- a/modules/programs/zsh/default.nix +++ b/modules/programs/zsh/default.nix @@ -215,7 +215,7 @@ in } ${optionalString cfg.enableFastSyntaxHighlighting - "source ${pkgs.zsh-fast-syntax-highlighting}/share/zsh/site-functions/fast-syntax-highlighting.plugin.zsh" + "source ${pkgs.zsh-fast-syntax-highlighting}/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh" } ${optionalString cfg.enableFzfCompletion "source ${fzfCompletion}"}