Skip to content

Instantly share code, notes, and snippets.

@vinayakg
Last active November 25, 2020 21:49
Show Gist options
  • Save vinayakg/3f3e1ee776ee303ce269d266d8b0418b to your computer and use it in GitHub Desktop.
Save vinayakg/3f3e1ee776ee303ce269d266d8b0418b to your computer and use it in GitHub Desktop.
ZSH - Zshell startup script
export ZSH="/Users/vg/.oh-my-zsh"
ZSH_THEME="robbyrussell"
POWERLEVEL9K_MODE='cascadia-code'
source $ZSH/oh-my-zsh.sh
plugins=(git colorize)
source "$HOME/.oh-my-zsh/plugins/vundle/vundle.plugin.zsh"
source "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
source "$HOME/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"
source "$HOME/.oh-my-zsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh"
source "$HOME/.oh-my-zsh/plugins/brew/brew.plugin.zsh"
source "$HOME/.oh-my-zsh/plugins/common-aliases/common-aliases.plugin.zsh"
source "$HOME/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh"
source "$HOME/.oh-my-zsh/plugins/zsh-interactive-cd/zsh-interactive-cd.plugin.zsh"
export HOMEBREW_PREFIX=/Users/vg/Install/usr/local
export PATH=/Users/vg/Install/usr/local/bin:$PATH
export PATH="/Users/vg/Install/usr/local/opt/openjdk@11/bin:$PATH"
eval "$(starship init zsh)"
zstyle ':completion:*:ssh:*' hosts off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment