ansible-collection-base/roles/zsh/templates/.zshrc.j2
2021-09-04 10:14:38 +02:00

15 lines
249 B
Django/Jinja

source {{ antigen_path }}/bin/antigen.zsh
antigen use oh-my-zsh
antigen bundle <<EOBUNDLES
{% for plugin in item.plugins %}
{{ plugin }}
{% endfor %}
EOBUNDLES
antigen theme {{ item.theme }}
antigen apply
source ~/.profile
{{ item.zshrc_extra }}