paulbsd-salt/states/zsh/config.sls
2021-09-25 16:03:39 +02:00

27 lines
618 B
Plaintext

---
zsh-omz-repo:
git.latest:
- name: https://github.com/robbyrussell/oh-my-zsh.git
- target: /usr/share/oh-my-zsh
- branch: master
- require:
- pkg: zsh-pkg
zsh-autosuggestions-repo:
git.latest:
- name: https://github.com/zsh-users/zsh-autosuggestions.git
- target: /usr/share/oh-my-zsh/plugins/zsh-autosuggestions
- branch: master
- require:
- pkg: zsh-pkg
zsh-omz-profile:
file.managed:
- name: /etc/zsh/zprofile
- source: salt://zsh/zprofile.j2
- user: root
- group: root
- mode: 0644
- template: jinja
- require:
- pkg: zsh-pkg