Forked from dogrocker/Oh my zsh with autosuggestions & syntax-highlighting.md
Last active
November 24, 2018 09:39
-
-
Save SanchoPanzo/bf5b0fa0f203b50e76e2c5ef334e0abf to your computer and use it in GitHub Desktop.
Oh my zsh
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
| # 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) | |
| - 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` | |
| - `nano ~/.zshrc` find `plugins=(git)` | |
| - Append `zsh-autosuggestions & zsh-syntax-highlighting` to `plugins()` like this | |
| `plugins=(git zsh-autosuggestions zsh-syntax-highlighting)` | |
| - Reopen terminal | |
| ### Ref | |
| - [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) | |
| - [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions) | |
| - [zsh-syntax-highlighting](https://github.com/zsh-users/zsh-syntax-highlighting) | |
| - [https://gist.github.com/kevin-smets/8568070](https://gist.github.com/kevin-smets/8568070) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment