mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
56 lines
1.3 KiB
Bash
56 lines
1.3 KiB
Bash
# Initializes Oh My Zsh
|
|
ZSH=${ZSH:-/usr/share/oh-my-zsh/}
|
|
|
|
local config_file plugin
|
|
|
|
# add a function path
|
|
fpath=($ZSH/functions $ZSH/completions $fpath)
|
|
|
|
if [[ -d ~/.omz ]]; then
|
|
[[ -d ~/.omz/functions ]] && fpath=(~/.omz/functions $fpath)
|
|
[[ -d ~/.omz/completion ]] && fpath=(~/.omz/completions $fpath)
|
|
fi
|
|
|
|
for config_file ($ZSH/lib/*.zsh) source $config_file
|
|
if [[ -d ~/.omz ]]; then
|
|
if [[ -d ~/.omz/lib ]]; then
|
|
for config_file (~/.omz/lib/*.zsh) source $config_file
|
|
fi
|
|
fi
|
|
|
|
plugin=${plugin:=()}
|
|
for plugin ($plugins) fpath=($ZSH/plugins/$plugin $fpath)
|
|
if [[ -d ~/.omz ]]; then
|
|
if [[ -d ~/.omz/plugins ]]; then
|
|
for plugin ($plugins) fpath=(~/.omz/plugins/$plugin $fpath)
|
|
fi
|
|
fi
|
|
|
|
# Load and run compinit
|
|
autoload -U compinit
|
|
compinit -i
|
|
|
|
# load plugins
|
|
for plugin ($plugins); do
|
|
if [[ -f ~/.omz/plugins/$plugin/$plugin.plugin.zsh ]]; then
|
|
source ~/.omz/plugins/$plugin/$plugin.plugin.zsh
|
|
elif [[ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]]; then
|
|
source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
|
fi
|
|
done
|
|
|
|
# Load the theme
|
|
if [ "$ZSH_THEME" = "random" ]
|
|
then
|
|
themes=($ZSH/themes/*zsh-theme)
|
|
N=${#themes[@]}
|
|
((N=(RANDOM%N)+1))
|
|
RANDOM_THEME=${themes[$N]}
|
|
source "$RANDOM_THEME"
|
|
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
|
|
else
|
|
if [ ! "$ZSH_THEME" = "" ]
|
|
then
|
|
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
|
fi
|
|
fi
|