<p align="center"><img src="https://s3.amazonaws.com/ohmyzsh/oh-my-zsh-logo.png" alt="Oh My Zsh"></p>
## Install ZSH
```shell
sudo pacman -S zsh-autosuggestions zsh-syntax-highlighting zsh
```
## Install Oh my ZSH
```bash
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```
## Install plugins
```bash
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
```
```bash
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
```
## Enable plugins by adding them to .zshrc
```bash
nvim ~/.zshrc
```
```bash
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
```
## Install powerlevel10k theme
```shell
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k
```
Then in **~/.zshrc**:
```bash
ZSH_THEME="powerlevel10k/powerlevel10k"
```
## References
- [Oh my ZSH](https://github.com/ohmyzsh/ohmyzsh)
- [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions)
- [zsh-syntax-highlighting](https://github.com/zsh-users/zsh-syntax-highlighting)
- [zsh-fast-syntax-highlighting](https://github.com/zdharma/fast-syntax-highlighting)
- [zsh-autocomplete](https://github.com/marlonrichert/zsh-autocomplete)
- [Powerlevel10k](https://github.com/romkatv/powerlevel10k)