1
0
Fork 0
zsh/zshrc

20 lines
496 B
Bash
Raw Normal View History

# Load zgen
2019-03-10 11:42:04 +01:00
source "${HOME}/.zgen/zgen.zsh"
2024-12-09 17:42:00 +01:00
zsh_config_repo=https://forgejo.audin.me/maudin/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
2024-12-10 14:35:21 +01:00
zgen load ${zsh_config_repo} ${USER}.zsh ${USER}
2020-04-29 12:03:50 +02:00
# Plugins
2024-12-10 14:35:21 +01:00
zgen load ${zsh_config_repo} ${USER}.plugins ${USER}
2020-04-29 14:03:38 +02:00
# Theme
2024-12-10 14:35:21 +01:00
zgen load ${zsh_config_repo} ${USER}.theme ${USER}
2020-04-29 12:03:50 +02:00
# Completions
2024-12-10 14:35:21 +01:00
zgen load ${zsh_config_repo} ${USER}.completions ${USER}
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