mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
# If you come from bash you might have to change your $PATH.
|
|
export PATH="$HOME/bin:/usr/local/bin:$PATH"
|
|
|
|
# Add pyenv
|
|
export PATH="$HOME/.pyenv/bin:$PATH"
|
|
# eval "$(pyenv init -)"
|
|
eval "$(pyenv virtualenv-init -)"
|
|
|
|
# Add cargo
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
|
|
# Add ruby
|
|
export RUBY_HOME=/usr/local/opt/ruby/bin
|
|
export PATH=$RUBY_HOME:$PATH
|
|
|
|
# Add dotfiles programs
|
|
export PATH="$DOTS/bin:$PATH"
|
|
|
|
# Add local programs
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
# Certificates
|
|
# export AWS_CA_BUNDLE=~/.aws/Palo-Root.cer
|
|
# export CA_BUNDLE=~/.aws/Palo-Root.cer
|
|
# export CURL_CA_BUNDLE=~/.aws/Palo-Root.cer
|
|
# export REQUESTS_CA_BUNDLE=~/.aws/Palo-Root.cer
|
|
|
|
# Directory Shortcuts
|
|
export PROJ=$HOME/Documents/GitHub
|
|
export TFDIR=$PROJ/terraform
|
|
export WORKON_HOME=~/.pyenv/versions
|
|
|
|
# CDPATH for convenient cd shortcuts
|
|
CDPATH="$HOME:$PROJ"
|
|
|
|
# Syntax Highlighting
|
|
if [ -f /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]; then
|
|
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
fi
|
|
|
|
# Auto Suggestions
|
|
if [ -f /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh ]; then
|
|
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
fi
|