{ config, lib, ... }: { programs.zsh = { enable = true; enableCompletion = true; autosuggestion = { enable = true; highlight = "fg=#${config.theme.colors.subtext}"; }; syntaxHighlighting.enable = true; history.size = 10000; profileExtra = lib.fileContents ./zprofile; initContent = lib.fileContents ./zshrc; }; programs.zoxide = { enable = true; enableZshIntegration = true; }; }