-
Notifications
You must be signed in to change notification settings - Fork 0
/
.antigenrc
40 lines (32 loc) · 1.18 KB
/
.antigenrc
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
#-- Load oh-my-zsh
antigen use oh-my-zsh
#-- Upgraded to powerlevel10k - https://github.com/romkatv/powerlevel10k#antigen
antigen theme romkatv/powerlevel10k
#-- Custom powerlevel10k config
source $ZSH_ROOT/.p10k.zsh
#-- Powerlevel 10k options.
typeset -g POWERLEVEL9K_VCS_MAX_SYNC_LATENCY_SECONDS=0 # Don't wait for Git status even for a millisecond, so that prompt always updates
# Load Powerlevel 9k Customizations
POWERLEVEL9K_DISK_USAGE_ONLY_WARNING="true"
POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL="90"
####- Load antigen bundles
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle command-not-found
antigen bundle desyncr/auto-ls
antigen bundle zsh-users/zsh-autosuggestions
#export NVM_COMPLETION=true
#antigen bundle lukechilds/zsh-nvm
#antigen bundle djui/alias-tips # Disabled for now, requires python
#antigen bundle viasite-ansible/zsh-ansible-server
#antigen bundle zpm-zsh/mysql-colorize
####-- Load FZF
if _cmd_exists fzf; then
_debug "fzf is installed"
antigen bundle andrewferrier/fzf-z
antigen bundle wfxr/forgit
source $ZSH_CUSTOM/.fzf-key-bindings.zsh
else
_debug "fzf is not installed, consider it"
fi
antigen apply