improve zsh plugin loading
This commit is contained in:
parent
cb07c1c3b7
commit
91127fde5b
@ -102,15 +102,38 @@ if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-no
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
### hooks/includes
|
### hooks/includes
|
||||||
for plugin in zsh-syntax-highlighting zsh-history-substring-search \
|
for plugin in zsh-syntax-highlighting zsh-history-substring-search zsh-autosuggestions; do
|
||||||
zsh-autosuggestions; do
|
# Define possible locations for this plugin
|
||||||
if [ -f /usr/share/zsh/plugins/$plugin/${plugin}.zsh ]; then
|
possible_locations=(
|
||||||
source /usr/share/zsh/plugins/$plugin/${plugin}.zsh
|
# Standard location
|
||||||
fi
|
"/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
|
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 '^[[A' history-substring-search-up
|
||||||
bindkey '^[[B' history-substring-search-down
|
bindkey '^[[B' history-substring-search-down
|
||||||
|
Loading…
Reference in New Issue
Block a user