-
Notifications
You must be signed in to change notification settings - Fork 1
/
.zshrc
29 lines (21 loc) · 847 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Fig pre block. Keep at the top of this file.
[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.pre.zsh" || true
##### Fig (Pre) #####
# zsh: .zshrc (always executed) -> .everythingrc
# Profile shell functions, output viewed with `zprof`
# zmodload zsh/zprof
# romkatv/powerlevel10k
# shellcheck disable=SC2296
P10K_INSTANT_PROMPT="${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
if [[ -r "${P10K_INSTANT_PROMPT}" ]]; then
# shellcheck disable=SC1090
. "${P10K_INSTANT_PROMPT}"
fi
# Load .everythingrc
if [[ -s ~/.everythingrc ]]; then
# shellcheck source=.everythingrc
. ~/.everythingrc
fi
##### Fig (Post) #####
# Fig post block. Keep at the bottom of this file.
[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.post.zsh" || true