-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
43 lines (29 loc) · 817 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
source ~/antigen.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle gitfast
antigen bundle fzf
antigen bundle asdf
# Syntax highlighting/suggestions/completions bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-completions
# local plugin
antigen bundle danwald/omz-utils@main
# Load the theme.
antigen theme bira
# Tell Antigen that you're done.
antigen apply
for fp in ~/.fzf.zsh ~/.envs ~/.aliases ~/.zshrc_local ~/.zshrc_secret
do
[ -f $fp ] && source $fp # && echo "loaded $fp"
done
fpath+=~/.zfunc
unsetopt correct_all
unsetopt share_history
. ~/z/z.sh
ulimit -n 524288 unlimited
autoload -Uz compinit
compinit