pantheon/homes/x86_64-linux/rafiq/programs/zsh.nix

14 lines
312 B
Nix

{ config, lib, ... }:
{
programs.zsh = {
enable = true;
enableCompletions = true;
autosuggestion = true;
enableVteIntegration = true;
syntaxHighlighting.enable = true;
history.share = true;
history.size = 10000;
history.ignoreDups = true;
history.ignoreSpace = true;
};
}