-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.zshrc
78 lines (58 loc) · 2.09 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/opt/local/bin/zsh
source ~/.zinit/bin/zinit.zsh
zinit light zsh-users/zsh-autosuggestions
zinit load zdharma/history-search-multi-word
autoload -U compinit zrecompile
zsh_cache=${HOME}/.zsh_cache
mkdir -p $zsh_cache
if [ -f ~/.asdf/asdf.sh ]; then
. ~/.asdf/asdf.sh
# append completions to fpath
fpath=(~/.asdf/completions $fpath)
fi
fpath=(~/.zsh.d/completions $fpath)
source ~/.zsh.d/antigen.zsh
if [ $UID -eq 0 ]; then
compinit
else
compinit -d $zsh_cache/zcomp-$HOST
for f in ~/.zshrc $zsh_cache/zcomp-$HOST; do
zrecompile -p $f && rm -f $f.zwc.old
done
fi
# PATH="/home/timebomb/perl5/bin${PATH+:}${PATH}"; export PATH;
# PERL5LIB="/home/timebomb/perl5/lib/perl5${PERL5LIB+:}${PERL5LIB}"; export PERL5LIB;
# PERL_LOCAL_LIB_ROOT="/home/timebomb/perl5${PERL_LOCAL_LIB_ROOT+:}${PERL_LOCAL_LIB_ROOT}"; export PERL_LOCAL_LIB_ROOT;
# PERL_MB_OPT="--install_base \"/home/timebomb/perl5\""; export PERL_MB_OPT;
# PERL_MM_OPT="INSTALL_BASE=/home/timebomb/perl5"; export PERL_MM_OPT;
# if which ruby >/dev/null && which gem >/dev/null; then
# PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
# fi
# [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# [[ -s "$HOME/.local/share/marker/marker.sh" ]] && source "$HOME/.local/share/marker/marker.sh"
# added by travis gem
[ -f /home/timebomb/.travis/travis.sh ] && source /home/timebomb/.travis/travis.sh
[ -f ~/.kubectl_aliases ] && source ~/.kubectl_aliases
source /home/timebomb/.config/broot/launcher/bash/br
if [ -f /usr/share/nnn/quitcd/quitcd.bash_zsh ]; then
source /usr/share/nnn/quitcd/quitcd.bash_zsh
fi
setopt extended_glob
antigen use oh-my-zsh
# # Bundles from the default repo (robbyrussell's oh-my-zsh).
# antigen bundle git
# # antigen bundle heroku
# antigen bundle pip
# # antigen bundle command-not-found
# # antigen bundle kubectx
# # antigen bundle kube-ps1
# # Syntax highlighting bundle.
# antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
antigen theme agnoster
# antigen theme afowler
for zshrc_snipplet in ~/.zsh.d/S[0-9][0-9]*[^~] ; do
source $zshrc_snipplet
done
# Tell Antigen that you're done.
antigen apply