From a68b824f9c2b6546459b66c6c627cf3e33298ea0 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Wed, 13 Jul 2022 08:00:58 +0200 Subject: [PATCH] feat(zsh): set autosuggestion color to dark gray --- home-manager/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index 4018323..435fefb 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -7,6 +7,10 @@ enableCompletion = true; history.size = 10000; + sessionVariables = { + ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=10"; + }; + shellAliases = { ls = "exa --group-directories-first --git"; };