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