summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorXingquan Liu <b1n@b1n.io>2024-12-17 23:03:57 +0800
committerXingquan Liu <b1n@b1n.io>2024-12-29 01:31:31 +0800
commitdaf9d9fe5d5a7a5ef25aa446582f8c656aab2b9b (patch)
treec90822f60d55a23c27bf9a2a86126b763a686beb /modules
parentbc03f7818771a75716966ce8c23110b715eff2aa (diff)
fix(zsh): correct the path of zsh-fast-syntax-highlighting
Diffstat (limited to 'modules')
-rw-r--r--modules/programs/zsh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix
index c6ec917..65689ba 100644
--- a/modules/programs/zsh/default.nix
+++ b/modules/programs/zsh/default.nix
@@ -204,7 +204,7 @@ in
}
${optionalString cfg.enableFastSyntaxHighlighting
- "source ${pkgs.zsh-fast-syntax-highlighting}/share/zsh-fast-syntax-highlighting/zsh-fast-syntax-highlighting.zsh"
+ "source ${pkgs.zsh-fast-syntax-highlighting}/share/zsh/site-functions/fast-syntax-highlighting.plugin.zsh"
}
${optionalString cfg.enableFzfCompletion "source ${fzfCompletion}"}