mirror of
https://github.com/cupcakearmy/dotfiles.git
synced 2024-11-01 04:54:10 +01:00
24 lines
423 B
Bash
24 lines
423 B
Bash
# ANTIGEN
|
|
source $HOME/.antigen.zsh
|
|
|
|
export NVM_COMPLETION=true
|
|
export NVM_LAZY_LOAD=true
|
|
export NVM_AUTO_USE=true
|
|
antigen bundle agkozak/zsh-z
|
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
|
antigen bundle zsh-users/zsh-autosuggestions
|
|
|
|
antigen apply
|
|
|
|
# GENERAL
|
|
|
|
# pnpm
|
|
export PNPM_HOME="${HOME}/Library/pnpm"
|
|
export PATH="$PNPM_HOME:$PATH"
|
|
# pnpm end
|
|
|
|
# Node
|
|
eval "$(fnm env --use-on-cd)"
|
|
|
|
eval "$(oh-my-posh init zsh)"
|