paulbsd-salt/states/zsh/config.sls

32 lines
674 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
2023-01-04 23:36:02 +01:00
zsh-omz-env-old:
file.absent:
- name: /etc/zsh/zprofile
2022-12-28 13:43:37 +01:00
zsh-omz-env:
2020-07-10 00:58:55 +02:00
file.managed:
2022-12-28 13:43:37 +01:00
- name: /etc/zsh/zshenv
- source: salt://zsh/zshenv.j2
2020-07-10 00:58:55 +02:00
- user: root
- group: root
- mode: 0644
- template: jinja
- require:
2022-12-28 13:43:37 +01:00
- pkg: zsh-pkg