1
0
Fork 0
zsh/zshrc

27 lines
647 B
Bash
Raw Normal View History

2017-03-29 16:18:06 +02:00
# load zgen
source "${HOME}/.zgen/zgen.zsh"
2016-02-24 00:18:23 +01:00
2017-03-29 16:18:06 +02:00
# if the init scipt doesn't exist
if ! zgen saved; then
2017-03-29 16:18:06 +02:00
# specify plugins here
zgen oh-my-zsh
2019-02-26 12:01:11 +01:00
zgen oh-my-zsh plugins/ansible
2017-03-29 16:18:06 +02:00
zgen oh-my-zsh plugins/colored-man-pages
zgen oh-my-zsh plugins/colorize
zgen oh-my-zsh plugins/extract
zgen oh-my-zsh plugins/git
zgen oh-my-zsh plugins/jump
zgen oh-my-zsh plugins/rsync
zgen oh-my-zsh plugins/systemadmin
zgen oh-my-zsh plugins/z
2016-02-24 00:18:23 +01:00
2017-03-29 16:18:06 +02:00
# personnal configuration
2017-04-06 16:26:30 +02:00
zgen load hybris42/zsh hybris.zsh
zgen load hybris42/zsh bearstech.zsh
zgen load hybris42/zsh hybris.theme
2016-02-24 00:18:23 +01:00
2017-03-29 16:18:06 +02:00
# generate the init script from plugins above
zgen save
fi