Last active
October 27, 2017 08:16
-
-
Save Anahkiasen/b43762ce48deba0417530cd6334f78df to your computer and use it in GitHub Desktop.
This file contains 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" | |
zplug 'zplug/zplug', hook-build:'zplug --self-manage' | |
# Themes | |
zplug 'dracula/zsh', as:theme | |
# Install plugins if there are plugins that have not been installed | |
if ! zplug check --verbose; then | |
zplug install | |
fi | |
zplug load |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment