1
0
Fork 0
zsh/zshrc

22 lines
499 B
Bash
Raw Normal View History

#############
# Load zgen #
#############
2019-03-10 11:42:04 +01:00
source "${HOME}/.zgen/zgen.zsh"
#######################################
# Plugins and configuration generator #
#######################################
2017-03-29 16:18:06 +02:00
if ! zgen saved; then
2020-04-29 12:03:50 +02:00
# Configuration
2020-04-29 11:59:05 +02:00
zgen load hybris42/zsh ${USER}.zsh
2020-04-29 12:03:50 +02:00
# Plugins
zgen load hybris42/zsh ${USER}.plugins
2020-04-29 14:03:38 +02:00
# Theme
zgen load hybris42/zsh ${USER}.theme
2020-04-29 12:03:50 +02:00
# Completions
zgen load hybris42/zsh ${USER}.completions
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