paulbsd-salt/states/zsh/config.sls

27 lines
618 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
zsh-omz-repo:
git.latest:
- name: https://github.com/robbyrussell/oh-my-zsh.git
- target: /usr/share/oh-my-zsh
2020-09-24 00:34:19 +02:00
- 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
2020-07-10 00:58:55 +02:00
- require:
- pkg: zsh-pkg
zsh-omz-profile:
file.managed:
2021-04-07 12:48:50 +02:00
- name: /etc/zsh/zprofile
2020-07-10 00:58:55 +02:00
- source: salt://zsh/zprofile.j2
- user: root
- group: root
- mode: 0644
- template: jinja
- require:
2021-09-25 16:03:39 +02:00
- pkg: zsh-pkg