diff options
Diffstat (limited to '')
| -rw-r--r-- | zsh.nix | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +{ + config, + pkgs, + ... +}: { + programs.zsh = { + enable = true; + enableAutosuggestions = true; + enableBashCompletion = true; + enableCompletion = true; + enableFastSyntaxHighlighting = true; + enableFzfCompletion = true; + enableFzfGit = true; + enableFzfHistory = true; + }; +} |
