Skip to content

Instantly share code, notes, and snippets.

@FarisMarouane
Forked from Justkant/.zshrc
Created May 7, 2018 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FarisMarouane/e52ed3b5a8d90a46a6f1c6451f42d6d2 to your computer and use it in GitHub Desktop.
Save FarisMarouane/e52ed3b5a8d90a46a6f1c6451f42d6d2 to your computer and use it in GitHub Desktop.
zgen zshrc
# zgen installation
# git clone https://github.com/tarjoilija/zgen.git "${HOME}/.zgen"
# load zgen
source "${HOME}/.zgen/zgen.zsh"
alias emacs="emacs -nw"
alias ne="emacs"
alias y='yarn'
alias yui='y upgrade-interactive --latest'
# add android sdk tools & others
export PATH="$PATH:/usr/local/sbin:${HOME}/Library/Android/sdk/platform-tools/"
# enable error redirect from react-native app
export REACT_EDITOR="code"
zstyle ':completion:*:*:docker:*' option-stacking yes
zstyle ':completion:*:*:docker-*:*' option-stacking yes
# check if there's no init script
if ! zgen saved; then
echo "Creating a zgen save"
zgen oh-my-zsh
# plugins
zgen oh-my-zsh plugins/sudo
zgen oh-my-zsh plugins/docker
zgen oh-my-zsh plugins/docker-compose
zgen oh-my-zsh plugins/brew
zgen oh-my-zsh plugins/osx
zgen oh-my-zsh plugins/common-aliases
zgen oh-my-zsh plugins/command-not-found
zgen oh-my-zsh plugins/gitfast
zgen oh-my-zsh plugins/node
zgen oh-my-zsh plugins/npm
zgen load zsh-users/zsh-syntax-highlighting
zgen load lukechilds/zsh-nvm
zgen load zsh-users/zsh-autosuggestions
# completions
zgen load zsh-users/zsh-completions src
zgen load lukechilds/zsh-better-npm-completion
# theme
zgen oh-my-zsh themes/clean
# save all to init script
zgen save
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment