-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
45 lines (35 loc) · 1 KB
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
################
# WSL Settings #
################
# Disable directory highlighting
LS_COLORS=$LS_COLORS:'ow=1;34:' ; export LS_COLORS
###########
# Aliases #
###########
alias ls='ls --color=auto'
alias ll='ls -alF'
alias vim='nvim'
####################
#Language Runtimes #
####################
# Add Go to PATH
export PATH=$PATH:/usr/local/go/bin
# Load NVM
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
#########################
# Google Cloud Platform #
#########################
export GOOGLE_APPLICATION_CREDENTIALS="/home/abrooks/.config/gcloud/cerebro-dev-358301.json"
########################
# Exercism #
########################
export PATH=~/bin:$PATH
########################
# Load Starship Prompt #
########################
eval "$(starship init zsh)"
SPACESHIP_RUBY_SHOW=false
# add Pulumi to the PATH
export PATH=$PATH:$HOME/.pulumi/bin