ansible-collection-base/roles/zsh/templates/.zshrc.j2

15 lines
249 B
Plaintext
Raw Normal View History

2021-09-04 07:30:36 +00:00
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 }}