chore(zsh): Add in alias sourcing

This commit is contained in:
Olaf Alexander 2024-10-27 19:54:01 -05:00
parent b50deb52cc
commit 5dad1b0196
2 changed files with 4 additions and 0 deletions

1
dot-config/zsh/aliases Normal file
View File

@ -0,0 +1 @@
alias ls='ls --color'

View File

@ -31,6 +31,9 @@ setopt hist_find_no_dup
# Enable autojump
[[ -s /etc/profile.d/autojump.zsh ]] && source /etc/profile.d/autojump.zsh
# Aliases
[[ -s "$ZDOTDIR/aliases" ]] && source "$ZDOTDIR/aliases"
# Start starship prompt
eval "$(starship init zsh)"