shell: disable compinit in one place across platforms
Alan Pearce alan@alanpearce.eu
Wed, 09 Aug 2023 17:16:20 +0200
2 files changed, 5 insertions(+), 4 deletions(-)
M system/settings/darwin.nix → system/settings/darwin.nix
@@ -28,8 +28,6 @@ }; programs.zsh = { enable = true; - enableCompletion = false; # Causes >2s startup time, overlaps home-manager config - enableBashCompletion = true; loginShellInit = '' source /System/Library/Templates/Data/private/etc/zprofile '';
M system/settings/programs/shell.nix → system/settings/programs/shell.nix
@@ -8,9 +8,12 @@ enable = true; promptInit = ""; } // ( + # Either of these will call `compinit`, causing >2s startup time + # Do it in home-manager instead if pkgs.stdenv.isDarwin - then { } - else { + then { + enableCompletion = false; + } else { enableGlobalCompInit = false; } );