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
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
source /opt/homebrew/share/antigen/antigen.zsh source $HOMEBREW_PREFIX/opt/chruby/share/chruby/chruby.sh
antigen use oh-my-zsh
antigen bundle colored-man-pages antigen bundle extract antigen bundle history antigen bundle z antigen bundle git antigen bundle npm antigen bundle gem antigen bundle python antigen bundle brew antigen bundle osx antigen bundle pod
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-completions
antigen theme romkatv/powerlevel10k
antigen apply
alias ls='ls -hFG' alias tree='tree -C -I node_modules' alias l='eza -aghlF --git --icons' alias ltree='eza -ghlTF --git -I=node_modules'
alias ncdu="ncdu --color dark -r -x" alias ncdu-exclude="ncdu --color dark -r -x --exclude .git --exclude node_modules"
|