nixos-config/config/programs/zsh.nix

13 lines
241 B
Nix
Raw Normal View History

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