
E
Endru Reza
Posted on Jan 9
Top 5 Oh My ZSH Plugins
git
shell1plugins=(git)
This will be the default plugin that has been installed the first time you install oh my zsh. Git plugin will make your activity about git in terminal easier.
autosuggesions
shell1// git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions 2plugins=(zsh-autosuggestions)
zsh-syntax-highlighting
shell1//git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting 2plugins=(zsh-syntax-highlighting)
zsh-fast-syntax-highlighting
shell1//git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting 2plugins=(fast-syntax-highlighting)
zsh-autocomplete
shell1//git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocompleteƒƒƒ 2plugins=(zsh-autocomplete)
1 min read