improve zsh plugin loading

This commit is contained in:
Joel Beckmeyer 2025-03-31 12:49:31 -04:00
parent cb07c1c3b7
commit 91127fde5b

View File

@ -102,15 +102,38 @@ if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-no
fi
### hooks/includes
for plugin in zsh-syntax-highlighting zsh-history-substring-search \
zsh-autosuggestions; do
if [ -f /usr/share/zsh/plugins/$plugin/${plugin}.zsh ]; then
source /usr/share/zsh/plugins/$plugin/${plugin}.zsh
for plugin in zsh-syntax-highlighting zsh-history-substring-search zsh-autosuggestions; do
# Define possible locations for this plugin
possible_locations=(
# Standard location
"/usr/share/zsh/plugins/$plugin/$plugin.zsh"
# Direct in /usr/share
"/usr/share/$plugin/$plugin.zsh"
# Home directory locations
"$HOME/.local/share/$plugin/$plugin.zsh"
# Version-specific directory (for history-substring-search)
"$HOME/.local/share/$plugin/$plugin-*/($plugin).zsh"
# Oh-My-Zsh style plugin location
"$HOME/.oh-my-zsh/custom/plugins/$plugin/$plugin.zsh"
# Homebrew location (for macOS users)
"/usr/local/share/$plugin/$plugin.zsh"
# Specific path for history-substring-search with version number
"$HOME/.local/share/zsh-history-substring-search/zsh-history-substring-search-*/zsh-history-substring-search.zsh"
)
# Try each location until we find one that exists
for location in "${possible_locations[@]}"; do
# Expand the path in case it contains wildcards
expanded_locations=( ${~location} )
# Check each expanded location
for expanded_location in "${expanded_locations[@]}"; do
if [[ -f "$expanded_location" ]]; then
source "$expanded_location"
# Break out of the inner loop
break 2
fi
done
done
done
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source "$HOME/.local/share/zsh-history-substring-search/zsh-history-substring-search-1.1.0/zsh-history-substring-search.zsh"
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down