From 8de85492a643786973331d1dfc4491d3897d3b65 Mon Sep 17 00:00:00 2001 From: Cookiez Date: Wed, 11 Mar 2026 15:53:37 +0100 Subject: [PATCH] Removed ZSH autocomplete as it was slowing down terminal startup --- modules/zsh.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/zsh.nix b/modules/zsh.nix index 7a51f6d..f38a6c8 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -19,7 +19,6 @@ #To reset powerlevel10k, write 'p10k configure' in shell! promptInit = '' - source ${pkgs.zsh-autocomplete}/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme # Make ← and → move the cursor on the command line, even when in the menu @@ -35,7 +34,6 @@ pkgs.zsh-completions pkgs.zsh-powerlevel10k pkgs.zsh-syntax-highlighting - pkgs.zsh-autocomplete pkgs.zsh-autosuggestions ]; }