1
0
Fork 0
zsh/zshrc

22 lines
551 B
Bash
Raw Normal View History

# Load zgen
2019-03-10 11:42:04 +01:00
source "${HOME}/.zgen/zgen.zsh"
# Required for compdef calls to work
2022-11-09 16:28:06 +01:00
autoload -Uz compinit && \
compinit -C
# 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
2022-10-17 10:47:09 +02:00
zgen load https://gitea.audin.me/hybris/zsh ${USER}.zsh
2020-04-29 12:03:50 +02:00
# Plugins
2022-10-17 10:47:09 +02:00
zgen load https://gitea.audin.me/hybris/zsh ${USER}.plugins
2020-04-29 14:03:38 +02:00
# Theme
2022-10-17 10:47:09 +02:00
zgen load https://gitea.audin.me/hybris/zsh ${USER}.theme
2020-04-29 12:03:50 +02:00
# Completions
2022-10-17 10:47:09 +02:00
zgen load https://gitea.audin.me/hybris/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