9 lines
191 B
Bash
9 lines
191 B
Bash
ZDOTDIR=~/.zsh
|
|
|
|
# Load all of the config files in $ZSH/lib that end in .zsh
|
|
for config_file ($ZDOTDIR/lib/*.zsh) source $config_file
|
|
|
|
# Load and run compinit
|
|
autoload -U compinit
|
|
compinit -i
|