dotfiles/files/zsh/.zshrc

24 lines
423 B
Bash
Raw Normal View History

2023-02-27 12:49:00 +01:00
# 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
2023-03-06 15:17:51 +01:00
# Node
eval "$(fnm env --use-on-cd)"
2023-02-27 12:49:00 +01:00
eval "$(oh-my-posh init zsh)"