Skip to content

Instantly share code, notes, and snippets.

@gautam678
Created January 10, 2020 21:31
Show Gist options
  • Select an option

  • Save gautam678/2263ea7ccbd4ebd51303e7c4e0e74371 to your computer and use it in GitHub Desktop.

Select an option

Save gautam678/2263ea7ccbd4ebd51303e7c4e0e74371 to your computer and use it in GitHub Desktop.
My zsh rc configuration
# Pure theme for Hyper
autoload -U promptinit; promptinit
prompt pure
# AutoComplete for Zsh
autoload -Uz compinit && compinit
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}'
PATH=$PATH:/home/USER/bin:/usr/local/homebrew
export PATH
#Setting PATH for NVM
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
export PATH="/usr/local/sbin:$PATH"
#opening VS code
alias code="/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code"
# Setup Aliases
alias vi="vim"
alias ll='ls -lG'
alias python='python3'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment