diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2024-12-29 09:59:07 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-29 09:59:07 +1100 |
| commit | 1fd4bd936935b58ca2d2c92fa9b444b8aef3986a (patch) | |
| tree | c90822f60d55a23c27bf9a2a86126b763a686beb /modules/programs | |
| parent | bc03f7818771a75716966ce8c23110b715eff2aa (diff) | |
| parent | daf9d9fe5d5a7a5ef25aa446582f8c656aab2b9b (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.nix | 2 |
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}"} |
