Browse Source

I dont like zprofile, so I put the cargo path directly in the config; watson is out; aliases was wrong

master
Julio Biason 4 years ago
parent
commit
65bb6a8432
  1. 6
      zsh/zshrc

6
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

Loading…
Cancel
Save