From 3e0abb844547c037cb51dfa3ed39e046155eefd6 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 13 Feb 2021 17:06:20 +0100 Subject: [PATCH] Change zsh plugings source for autosuggestions and syntax highlighting to git instead of arch package --- dotfiles/zsh/zshrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dotfiles/zsh/zshrc b/dotfiles/zsh/zshrc index 0941d77..4380941 100644 --- a/dotfiles/zsh/zshrc +++ b/dotfiles/zsh/zshrc @@ -79,6 +79,8 @@ source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh # SYNTAX HIGHLIGHTING AND AUTOSUGGESTIONS -source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh +source "$HOME/github_dotfiles/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh" # when using git +#source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh # when using Arch package # The following line MUST be at the end of this file! -source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +source "$HOME/github_dotfiles/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh" # when using git +#source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh # when using Arch package