|
|
@ -1,5 +1,10 @@
|
|
|
|
# Initializes Oh My Zsh
|
|
|
|
# Initializes Oh My Zsh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Disable colors on dumb terminals
|
|
|
|
|
|
|
|
if [ "$TERM" = "dumb" ]; then
|
|
|
|
|
|
|
|
DISABLE_COLOR="true"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# add a function path
|
|
|
|
# add a function path
|
|
|
|
fpath=($ZSH/functions $fpath)
|
|
|
|
fpath=($ZSH/functions $fpath)
|
|
|
|
|
|
|
|
|
|
|
@ -7,9 +12,6 @@ fpath=($ZSH/functions $fpath)
|
|
|
|
# TIP: Add files you don't want in git to .gitignore
|
|
|
|
# TIP: Add files you don't want in git to .gitignore
|
|
|
|
for config_file ($ZSH/lib/*.zsh) source $config_file
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Load all of the plugins that were defined in ~/.zshrc
|
|
|
|
# Load all of the plugins that were defined in ~/.zshrc
|
|
|
|
plugin=${plugin:=()}
|
|
|
|
plugin=${plugin:=()}
|
|
|
|
for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
|
|
|
for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
|
|
@ -17,6 +19,9 @@ for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
|
|
|
# Load the theme
|
|
|
|
# Load the theme
|
|
|
|
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
|
|
|
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Load all of your custom configurations from custom/
|
|
|
|
|
|
|
|
for config_file ($ZSH/custom/*.zsh) source $config_file
|
|
|
|
|
|
|
|
|
|
|
|
# Check for updates on initial load...
|
|
|
|
# Check for updates on initial load...
|
|
|
|
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
|
|
|
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
|
|
|
then
|
|
|
|
then
|
|
|
|