From 744497a3d1d6dce45e3a1a6f4ff081f327cc4add Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Thu, 1 Aug 2024 10:13:28 +0200 Subject: [PATCH] feat(zsh): refine syntax highlighting --- zsh/rc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/rc b/zsh/rc index 9c70a00..02f75df 100644 --- a/zsh/rc +++ b/zsh/rc @@ -89,6 +89,10 @@ source "${_here}/completion" export ZSH_AUTOSUGGEST_STRATEGY=(history completion) export ZSH_AUTOSUGGEST_MANUAL_REBIND=true +export ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets) +typeset -A ZSH_HIGHLIGHT_STYLES +export ZSH_HIGHLIGHT_STYLES[path]='none' + _antidote="${_cache_dir}/antidote" _plugins="${_here}/plugins" _plugins_cache="${_cache_dir}/plugins"