My Nix Configuration
1{ 2 programs.zsh = { 3 enable = true; 4 enableBashCompletion = true; 5 enableCompletion = true; 6 enableGlobalCompInit = true; 7 autosuggestions.enable = true; 8 autosuggestions.async = true; 9 histSize = 10000; 10 syntaxHighlighting.enable = true; 11 vteIntegration = true; 12 }; 13}