-
-
Save mogetutu/a072fcb2f2d5557f119cfea3245e0fa1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZPLUG_HOME=/usr/local/opt/zplug | |
source $ZPLUG_HOME/init.zsh | |
# Plugins | |
zplug "lib/completion", from:oh-my-zsh | |
zplug "lib/directories", from:oh-my-zsh | |
zplug "lib/functions", from:oh-my-zsh | |
zplug "plugins/brew-cask", from:oh-my-zsh | |
zplug "plugins/brew", from:oh-my-zsh | |
zplug "plugins/composer", from:oh-my-zsh | |
zplug "plugins/git-flow", from:oh-my-zsh | |
zplug "plugins/git", from:oh-my-zsh | |
zplug "plugins/gitfast", from:oh-my-zsh | |
zplug "plugins/laravel", from:oh-my-zsh | |
zplug "plugins/z", from:oh-my-zsh | |
zplug "zsh-users/zsh-autosuggestions" | |
zplug "zsh-users/zsh-completions" | |
zplug "zsh-users/zsh-syntax-highlighting" | |
# Themes | |
zplug 'dracula/zsh', as:theme | |
# Install plugins if there are plugins that have not been installed | |
if ! zplug check --verbose; then | |
zplug install | |
zplug update | |
fi | |
zplug load |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment