dotfiles/chezmoi/dot_zshrc

35 lines
481 B
Plaintext
Raw Normal View History

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
)
# 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