Change zsh autocompletion color
diff --git a/src/apps/personal/zsh.nix b/src/apps/personal/zsh.nix
index 650948a..2efab5e 100644
--- a/src/apps/personal/zsh.nix
+++ b/src/apps/personal/zsh.nix
@@ -30,10 +30,12 @@
                     return 127;
                 fi
             }
+
+            ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=243';
         '';
         enableSyntaxHighlighting = true;
         enableAutosuggestions = true;
         autocd = true;
         dotDir = ".local/share/zsh";
     };
-}
\ No newline at end of file
+}