https://github.com/reybits/config-zsh
My Zsh config.
https://github.com/reybits/config-zsh
config linux macos zsh
Last synced: about 2 months ago
JSON representation
My Zsh config.
- Host: GitHub
- URL: https://github.com/reybits/config-zsh
- Owner: reybits
- License: mit
- Created: 2025-02-21T11:37:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-03-17T15:01:29.000Z (3 months ago)
- Last Synced: 2026-04-16T12:41:32.479Z (2 months ago)
- Topics: config, linux, macos, zsh
- Language: Shell
- Homepage:
- Size: 626 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZSH Plugins
A streamlined and customizable ZSH configuration for enhanced terminal productivity.

## Installation
Install the following plugins by cloning their repositories into the `~/.config/zsh/plugins` directory.
### zsh-autosuggestions
```sh
git clone https://github.com/zsh-users/zsh-autosuggestions ${XDG_CONFIG_HOME:-$HOME/.config}/zsh/plugins/zsh-autosuggestions
```
### zsh-syntax-highlighting
```sh
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${XDG_CONFIG_HOME:-$HOME/.config}/zsh/plugins/zsh-syntax-highlighting
```
Add plugins in `~/.zshrc`:
```sh
if [ -f ${XDG_CONFIG_HOME:-$HOME/.config}/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh ]; then
source ${XDG_CONFIG_HOME:-$HOME/.config}/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
fi
if [ -f ${XDG_CONFIG_HOME:-$HOME/.config}/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]; then
source ${XDG_CONFIG_HOME:-$HOME/.config}/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fi
```
Restart terminal or run command again:
```sh
source ~/.zshrc
```