my_config/.zshrc.d/prompt_autosuggest.zsh

7 lines
287 B
Bash
Raw Normal View History

2023-06-04 19:53:27 +02:00
# enable auto-suggestions based on the history for most systems
if [ -f $ZSH_PLUGIN_BASE/zsh-autosuggestions/zsh-autosuggestions.zsh ]; then
. $ZSH_PLUGIN_BASE/zsh-autosuggestions/zsh-autosuggestions.zsh
# change suggestion color
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=#999'
fi