mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-08 04:34:00 +02:00
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
# Puppet Lair
|
|
|
|
# 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); do
|
|
source $config_file
|
|
done
|
|
|
|
is_plugin() {
|
|
local base_dir=$1
|
|
local name=$2
|
|
test -f $base_dir/plugins/$name/$name.plugin.zsh \
|
|
|| test -f $base_dir/plugins/$name/_$name
|
|
}
|
|
# Add all defined plugins to fpath. This must be done
|
|
# before running compinit.
|
|
for plugin ($plugins); do
|
|
if is_plugin $ZSH $plugin; then
|
|
fpath=($ZSH/plugins/$plugin $fpath)
|
|
fi
|
|
done
|
|
|
|
# Figure out the SHORT hostname
|
|
if [ -n "$commands[scutil]" ]; then
|
|
# OS X
|
|
SHORT_HOST=$(scutil --get ComputerName)
|
|
else
|
|
SHORT_HOST=${HOST/.*/}
|
|
fi
|
|
|
|
# Save the location of the current completion dump file.
|
|
ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
|
|
|
|
# Load and run compinit
|
|
autoload -U compinit
|
|
compinit -i -d "${ZSH_COMPDUMP}"
|
|
|
|
# Load all of the plugins that were defined in ~/.zshrc
|
|
# for plugin ($plugins); do
|
|
# if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
|
|
# source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
|
|
# elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
|
|
# source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
|
# fi
|
|
# done
|
|
|
|
# load theme
|
|
test -f "$ZSH/themes/$THEME" && source "$ZSH/themes/$THEME"
|