From 6028605f82c34c42a46227f08b669866bdad0937 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Mon, 1 Jul 2024 13:18:05 +0200 Subject: [PATCH] feat(user/zsh): fix autosuggest highlighting Signed-off-by: Matej Focko --- roles/user/shell/zsh/templates/zshrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/user/shell/zsh/templates/zshrc b/roles/user/shell/zsh/templates/zshrc index 6c69b56..fe17381 100644 --- a/roles/user/shell/zsh/templates/zshrc +++ b/roles/user/shell/zsh/templates/zshrc @@ -8,7 +8,10 @@ source $ZSH/oh-my-zsh.sh export PATH=$HOME/.local/bin:$PATH ### zsh autosuggestions color ### -ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=8,underline,standout" +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=8,underline" + +# Solarized theme +# ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=10,underline" ### Ruby gems ### if which ruby >/dev/null && which gem >/dev/null; then