48 lines
1.2 KiB
Bash
48 lines
1.2 KiB
Bash
# Prefix all functions with "_dots" for easier profiling
|
|
# -----------------------------------------------------------------------------
|
|
if [[ -n "$ZSH_BENCH" ]]; then
|
|
zmodload zsh/zprof
|
|
fi
|
|
|
|
# Load profile
|
|
# -----------------------------------------------------------------------------
|
|
_dots_load_profile() {
|
|
source $HOME/.profile
|
|
}
|
|
_dots_load_profile
|
|
|
|
# Load oh-my-zsh
|
|
# -----------------------------------------------------------------------------
|
|
_dots_load_omz() {
|
|
export DISABLE_AUTO_UPDATE="true"
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
plugins=(
|
|
z
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
)
|
|
source $ZSH/oh-my-zsh.sh
|
|
}
|
|
_dots_load_omz
|
|
|
|
# Build shell prompt
|
|
# -----------------------------------------------------------------------------
|
|
_dots_build_prompt() {
|
|
local final_prompt=""
|
|
|
|
local dir_section="%{$fg_bold[blue]%}%~"
|
|
final_prompt+="$dir_section "
|
|
|
|
local prompt_char="%{$reset_color%}%%"
|
|
final_prompt+="$prompt_char "
|
|
|
|
PROMPT="$final_prompt"
|
|
}
|
|
_dots_build_prompt
|
|
|
|
# Finish bench profiling
|
|
# -----------------------------------------------------------------------------
|
|
if [[ -n "$ZSH_BENCH" ]]; then
|
|
zprof
|
|
fi
|