summaryrefslogtreecommitdiff
path: root/modules/programs
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2024-12-29 09:59:07 +1100
committerGitHub <noreply@github.com>2024-12-29 09:59:07 +1100
commit1fd4bd936935b58ca2d2c92fa9b444b8aef3986a (patch)
treec90822f60d55a23c27bf9a2a86126b763a686beb /modules/programs
parentbc03f7818771a75716966ce8c23110b715eff2aa (diff)
parentdaf9d9fe5d5a7a5ef25aa446582f8c656aab2b9b (diff)
Merge pull request #1230 from b1nhack/master
fix(zsh): correct the path of zsh-fast-syntax-highlighting
Diffstat (limited to 'modules/programs')
-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}"}