# OhMy zsh

## Install:

```bash
sudo apt install zsh fonts-hack-ttf fonts-powerline
```

```bash
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```

## Config:

edit `~/.zshrc`

#### set theme:

```bash
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
```

```bash
ZSH_THEME="powerlevel10k/powerlevel10k"
```

To Restart the installation:

```bash
p10k configure
```

#### set Plugins:

##### Install

```bash
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

```

```bash
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

```

##### Set in Config:

```bash
plugins=(git vscode zsh-autosuggestions zsh-syntax-highlighting command-not-found)

```