nixos-config/config/programs/zsh.nix

13 lines
229 B
Nix
Raw Normal View History

2022-06-12 15:42:42 +00:00
_: {
2022-01-15 15:09:02 +00:00
programs = {
zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
enableVteIntegration = true;
autocd = true;
};
};
}