fix typos

This commit is contained in:
Fred Klassen 2023-02-07 21:11:59 -08:00
commit 95ed695f0b
No known key found for this signature in database
GPG key ID: E9E2149793BDE17E
2 changed files with 14 additions and 3 deletions

View file

@ -134,8 +134,12 @@ export MANPATH="/usr/local/man:/usr/local/ssl/share/man:$MANPATH"
ZSH_ALIAS_FINDER_AUTOMATIC=true
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
if [ -f /etc/profile.d/vte.sh ]; then
source /etc/profile.d/vte.sh
fi
fi
# comment out if you want to disable Starship and use ZSH_THEME
eval "$(starship init zsh)"
if [ -f "$HOME/.config/starship.toml" ]; then
eval "$(starship init zsh)"
fi