# Guide 10: User Customization mit ZSH (Personalisierung)

*Verpasse deinem Terminal ein Upgrade mit Oh My Zsh, Themes und Plugins.*

##### **Voraussetzungen installieren:**

```bash
pkg install zsh git curl
```

##### **Oh My Zsh installieren:**

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

##### **Zsh als Standard-Shell festlegen:**

```bash
chsh -s zsh
```

##### **Nützliche Plugins hinzufügen (Syntax-Highlighting &amp; Autosuggestions):**

- - *Highlighting:*

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

- - *Autosuggestions:*

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

##### **Plugins in der Konfiguration aktivieren:**

Öffne die Datei `~/.zshrc` mit einem Editor und passe die Plugin-Zeile wie folgt an:

```bash
 plugins=(git zsh-syntax-highlighting zsh-autosuggestions)
```