dotfiles/tasks/shell.yml

30 lines
603 B
YAML
Raw Normal View History

2018-09-10 20:08:35 +01:00
- template:
src: ./files/zshrc/.zshrc
2018-09-17 17:22:15 +01:00
dest: "{{ home }}/.zshrc"
2018-09-10 20:08:35 +01:00
mode: 0644
2018-09-17 17:22:15 +01:00
owner: "{{ user }}"
2018-09-14 09:00:06 +01:00
validate: "zsh -n %s"
2018-09-18 13:19:31 +01:00
backup: true
trim_blocks: false
2018-09-10 20:08:35 +01:00
2018-10-08 17:02:05 +01:00
- template:
2018-09-10 20:08:35 +01:00
src: ./files/global-environment
dest: /etc/environment
mode: 0644
owner: root
group: root
2018-12-03 22:00:17 +00:00
- template:
2018-09-10 20:08:35 +01:00
src: ./files/tmux.conf
2018-09-17 17:22:15 +01:00
dest: "{{ home }}/.tmux.conf"
2018-09-10 20:08:35 +01:00
mode: 0755
2018-09-17 17:22:15 +01:00
owner: "{{ user }}"
2018-09-10 20:08:35 +01:00
group: users
2018-12-03 22:00:17 +00:00
- git:
repo: https://github.com/jimeh/tmux-themepack.git
2018-12-03 22:00:17 +00:00
dest: "{{ home }}/.tmux/plugins/tmux-themepack"
force: true
become: true
become_user: "{{ user }}"