Files
dotfiles/hosts/programs/zsh/default.nix
2025-06-29 17:33:24 +05:30

14 lines
233 B
Nix

{ ... }:
{
programs.zsh = {
enable = true;
histSize = 30000;
enableBashCompletion = true;
enableCompletion = true;
autosuggestions = {
enable = true;
highlightStyle = "fg=yellow,bold";
};
};
}