ohmyzsh/oh-my-zsh.sh
2010-03-30 12:47:31 -05:00

12 lines
359 B
Bash

# Initializes Oh My Zsh
# add a function path
fpath=($ZSH/functions $fpath)
# Load all of the config files in ~/oh-my-zsh that end in .zsh
# TIP: Add files you don't want in git to .gitignore
for config_file ($ZSH/lib/*.zsh) source $config_file
# Load all of your custom configurations from custom/
for config_file ($ZSH/custom/*.zsh) source $config_file