1
0
Fork 0
zsh/zshrc

31 lines
761 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
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
2019-03-10 11:31:00 +01:00
zgen oh-my-zsh plugins/keychain
2017-03-29 16:18:06 +02:00
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
2019-03-10 11:32:59 +01:00
# Some configuration
zstyle :omz:plugins:keychain agents ssh
zstyle :omz:plugins:keychain options --quiet
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