From fe07c4b7af2835708a07cfc5fa6ea1b1e95e6bb4 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 6 Mar 2020 12:58:52 -0300 Subject: [PATCH] Generify loading starship and aliases --- zsh/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index 59cd30c..fd98420 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -42,10 +42,10 @@ source ~/.watson.zsh source <(scotty init zsh) # Starship -source <("/home/juliob/.cargo/bin/starship" init zsh --print-full-init) +source <("starship" init zsh --print-full-init) # Aliases -source ~/.aliases +if [ -f '$HOME/.aliases' ]; then source $HOME/.aliases; fi # GCP if [ -f '/home/juliob/bin/google-cloud-sdk/path.zsh.inc' ]; then . '/home/juliob/bin/google-cloud-sdk/path.zsh.inc'; fi