mirror of
https://github.com/nikdoof/dotfiles.git
synced 2026-01-31 11:28:14 +00:00
11 lines
262 B
Bash
11 lines
262 B
Bash
# shellcheck shell=zsh
|
|
fpath+=($XDG_CONFIG_HOME/zsh/completions)
|
|
|
|
autoload -Uz compinit
|
|
compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"
|
|
|
|
# If we have fzf installed, load its zsh completions
|
|
if [ -x $(command -v fzf) ]; then
|
|
source <(fzf --zsh)
|
|
fi
|