Skip to content

Instantly share code, notes, and snippets.

@hipertracker
Created December 18, 2019 22:37
Show Gist options
  • Save hipertracker/562d3d0fcdde2034685dce99f51bd45c to your computer and use it in GitHub Desktop.
Save hipertracker/562d3d0fcdde2034685dce99f51bd45c to your computer and use it in GitHub Desktop.
zsh + oh-my-zsh simple install
1. Install zsh from packages
2. Install oh-my-zsh:
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
3. configure ~/.zshrc
...
ZSH_THEME="agnoster"
COMPLETION_WAITING_DOTS="true"
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
command-not-found
)
source $ZSH/oh-my-zsh.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment