26 lines
609 B
Plaintext
26 lines
609 B
Plaintext
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
fi
|
|
|
|
export SSH_ASKPASS=/usr/local/bin/ssh-askpass
|
|
export DISPLAY=":0"
|
|
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
|
|
ZSH_THEME="powerlevel10k/powerlevel10k"
|
|
|
|
plugins=(git ssh-agent)
|
|
|
|
# Load zsh config files
|
|
typeset -U config_files
|
|
config_files=(~/.zsh/*.zsh)
|
|
|
|
for file in ${config_files}; do
|
|
source "$file"
|
|
done
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f ~/.zsh/.p10k.zsh ]] || source ~/.zsh/.p10k.zsh
|