{ pkgs, lib, config, osConfig, ... }: { programs.zsh = { enable = true; enableCompletion = true; autosuggestion.enable = true; syntaxHighlighting.enable = true; history = { save = 2097152; size = 2097152; expireDuplicatesFirst = true; ignoreDups = true; ignoreSpace = true; path = "${config.xdg.dataHome}/zsh/history"; }; zplug = { enable = true; plugins = [ { name = "jeffreytse/zsh-vi-mode"; } ]; }; }; programs.starship.enable = true; }