[ZSH] Add custom completions

This commit is contained in:
Fabian Ising
2026-08-11 15:01:20 +02:00
parent 104b8e2d8d
commit 6f9e4910bb
+4
View File
@@ -8,6 +8,10 @@
source "${ZDOTDIR:-$HOME}/.zsh/lib/updates.zsh" source "${ZDOTDIR:-$HOME}/.zsh/lib/updates.zsh"
export LC_OSC52=1 export LC_OSC52=1
# Completions for tools installed under ~/.local (e.g. tools-repo's safe*
# wrappers). Must precede antidote, whose completion plugin runs compinit.
fpath=("$HOME/.local/share/zsh/site-functions" $fpath)
plugins_txt=${ZDOTDIR:-$HOME}/.zsh/.zsh_plugins.txt plugins_txt=${ZDOTDIR:-$HOME}/.zsh/.zsh_plugins.txt
static_file=${ZDOTDIR:-$HOME}/.cache/zsh/.zsh_plugins.zsh static_file=${ZDOTDIR:-$HOME}/.cache/zsh/.zsh_plugins.zsh
source "${ZDOTDIR:-$HOME}/.zsh/lib/antidote.zsh" source "${ZDOTDIR:-$HOME}/.zsh/lib/antidote.zsh"