diff --git a/zsh/zshrc b/zsh/zshrc index fd98420..00588d2 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -34,9 +34,11 @@ zstyle ':completion:*' verbose true zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31' zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd' +# Rust +export PATH="$HOME/.cargo/bin:$PATH" + # Completions source ~/.gitflow-completion.zsh -source ~/.watson.zsh # Scotty source <(scotty init zsh) @@ -45,7 +47,7 @@ source <(scotty init zsh) source <("starship" init zsh --print-full-init) # Aliases -if [ -f '$HOME/.aliases' ]; then source $HOME/.aliases; fi +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