tags: #public #customization #plugins
category: zsh Terminal My dev environment
Plugins can be enabled in ‘~/.zshrc
. Most of them has to be downloaded first.
This comes by default in ZSH.
plugins=(
git
)
Highlights the commands while you are entering them in terminal. Useful for catching any syntax errors. Similiar to fish shell.
https://github.com/zsh-users/zsh-syntax-highlighting
plugins=(
git
zsh-syntax-highlighting
)
It autocompletes commands as you type based on your history. This is also similiar to the fish shell.
plugins=(
git
zsh-syntax-highlighting
zsh-autosuggestions
)