Skip to content

Instantly share code, notes, and snippets.

@tibkiss
Created March 15, 2018 11:55
Show Gist options
  • Save tibkiss/12fb2706b6dc7620a3fab2c501a448a2 to your computer and use it in GitHub Desktop.
Save tibkiss/12fb2706b6dc7620a3fab2c501a448a2 to your computer and use it in GitHub Desktop.
source ~/.zplug/init.zsh
zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug "chrissicool/zsh-256color"
zplug "srijanshetty/docker-zsh"
zplug "unixorn/git-extra-commands"
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-history-substring-search"
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/jira", from:oh-my-zsh
# Load theme file
setopt prompt_subst # Make sure prompt is able to be generated properly.
zplug "caiogondim/bullet-train.zsh", use:bullet-train.zsh-theme
BULLETTRAIN_PROMPT_ORDER=(
time
status
custom
context
dir
screen
perl
ruby
virtualenv
aws
go
elixir
git
cmd_exec_time
)
# Install plugins if there are plugins that have not been installed
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
fi
# Then, source plugins and add commands to $PATH
zplug load --verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment