Created
January 10, 2020 21:31
-
-
Save gautam678/2263ea7ccbd4ebd51303e7c4e0e74371 to your computer and use it in GitHub Desktop.
My zsh rc configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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