# Plugins export MINIPLUG_HOME="$XDG_DATA_HOME/zsh/miniplug" # Download Miniplug [ ! -f "$MINIPLUG_HOME/miniplug.zsh" ] && \ curl -sL --create-dirs \ https://git.sr.ht/~yerinalexey/miniplug/blob/refs/heads/master/miniplug.zsh \ -o "$MINIPLUG_HOME/miniplug.zsh" # Load it source "$MINIPLUG_HOME/miniplug.zsh" # Theme miniplug theme "romkatv/powerlevel10k" source "$XDG_CONFIG_HOME/zsh/p10k.zsh" # Syntax highlighting miniplug plugin "zsh-users/zsh-syntax-highlighting" # Fish-like suggestions # miniplug plugin "zsh-users/zsh-autosuggestions" # Load plugins! miniplug load # Plugin configuration: ## Fix comments color ZSH_HIGHLIGHT_STYLES[comment]='fg=240'