Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dead23angel/6d5c69371c31c23f84a6c927a6cae837 to your computer and use it in GitHub Desktop.
Save dead23angel/6d5c69371c31c23f84a6c927a6cae837 to your computer and use it in GitHub Desktop.

Oh my zsh.

Install with curl

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Enabling Plugins (zsh-autosuggestions & zsh-syntax-highlighting & zsh-artisan)

  • Download zsh-autosuggestions by

git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions

  • Download zsh-syntax-highlighting by

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

  • Download zsh-artisan by

git clone https://github.com/jessarcher/zsh-artisan.git ~/.oh-my-zsh/custom/plugins/artisan

  • nano ~/.zshrc find plugins=(git)

  • Append zsh-autosuggestions & zsh-syntax-highlighting & zsh-artisan to plugins() like this

plugins=(git zsh-autosuggestions zsh-syntax-highlighting artisan)

  • Reopen terminal

Ref

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment