zsh: Only source *.zsh files

Only source `*.zsh` files to prevent confusion or errors on startup.

Rename all files in 90-external-plugins accordingly.
This commit is contained in:
2022-05-01 14:04:11 +02:00
parent a912530f6f
commit ce4b8fa3dd
13 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
# Set suggestions strategy
# match_prev_cmd:
# Chooses the most recent match from history whose preceding item matches
# the most recently executed command.
# Won't work as expected with HIST_IGNORE_ALL_DUPS or HIST_EXPIRE_DUPS_FIRST
# completion:
# Chooses a suggestion based on what tab-completion would suggest.
ZSH_AUTOSUGGEST_STRATEGY=(match_prev_cmd completion)
ZSH_AUTOSUGGEST_MATCH_NUM_PREV_CMDS=2
ZSH_AUTOSUGGEST_MATCH_PREV_MAX_CMDS=-1
# vim: ft=zsh