{ config, ... }: { programs.direnv.enable = true; programs.zsh = { enable = true; autocd = true; autosuggestion.enable = true; defaultKeymap = "viins"; history.ignoreAllDups = true; initContent = '' PS1="%F{1}%n %B%5~%b %F{8}%# %f" ''; loginExtra = if (config.desktop.windowManager == "sway") then builtins.readFile ./zlogin.zsh else ""; syntaxHighlighting.enable = true; }; }