-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
33 lines (25 loc) · 706 Bytes
/
Copy path.zshrc
File metadata and controls
33 lines (25 loc) · 706 Bytes
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
30
31
32
33
# # start zsh profiling
# zmodload zsh/zprof
# POWERLEVEL9K_INSTALLATION_PATH=$ANTIGEN_BUNDLES/bhilburn/powerlevel9k
# Fix tramp hang, and early return if in tramp
[[ $TERM == "dumb" ]] && unsetopt zle && PS1='$ ' && return
# Initialize command prompt
export PS1="%n@%m:%~%# "
CASE_SENSITIVE="true"
ZSH_CUSTOM=${ZSH_CUSTOM:-$HOME/.zshrc.d}
ZSH_THEME="yang"
source "$HOME/.shell/pre-fix.sh"
source "$HOME/.zgen/zgen.zsh"
source $ZSH_CUSTOM/bootstrap.sh
source "$HOME/.shell/load.sh"
if [ -f "$HOME/.dir_colors" ]; then
eval $(dircolors -b $HOME/.dir_colors)
else
eval $(dircolors -b);
fi
# autoload bashcompinit
# bashcompinit
export SUDO_EDITOR=vim
# compinit
# # end zsh profiling
# zprof