2024-09-13 17:35:03 -04:00
|
|
|
# Path to your oh-my-zsh configuration.
|
|
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
|
|
|
2024-10-02 18:51:38 -04:00
|
|
|
plugins=(
|
|
|
|
asdf
|
|
|
|
aws
|
|
|
|
command-not-found
|
|
|
|
direnv
|
|
|
|
docker
|
|
|
|
docker-compose
|
|
|
|
eza
|
|
|
|
extract
|
|
|
|
gcloud
|
|
|
|
git
|
|
|
|
github
|
|
|
|
mix
|
|
|
|
tmux
|
|
|
|
zsh-autosuggestions
|
|
|
|
)
|
|
|
|
|
2024-11-15 15:50:30 -05:00
|
|
|
# asdf config
|
|
|
|
export ASDF_GOLANG_MOD_VERSION_ENABLED=true
|
2024-11-18 17:21:31 -05:00
|
|
|
export ASDF_NODEJS_LEGACY_FILE_DYNAMIC_STRATEGY=latest_installed
|
2024-11-15 15:50:30 -05:00
|
|
|
|
2024-10-02 18:51:38 -04:00
|
|
|
# eza plugin config
|
|
|
|
zstyle ':omz:plugins:eza' 'git-status' yes
|
|
|
|
zstyle ':omz:plugins:eza' 'header' yes
|
2024-09-13 17:35:03 -04:00
|
|
|
|
|
|
|
# OH MY ZSH!
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
2024-10-02 18:51:38 -04:00
|
|
|
# Load starship
|
2024-09-13 17:35:03 -04:00
|
|
|
eval "$(starship init zsh)"
|
|
|
|
|
|
|
|
# Aliases
|
|
|
|
if command -v bat &> /dev/null; then
|
|
|
|
alias -- cat=bat
|
|
|
|
fi
|