2021-12-24 11:17:59 +01:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
|
|
|
connection: local
|
|
|
|
become: true
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Basic dev install
|
|
|
|
package:
|
|
|
|
name:
|
|
|
|
- git
|
|
|
|
- zsh
|
2021-12-24 12:03:11 +01:00
|
|
|
|
|
|
|
- name: Set zsh main as shell
|
|
|
|
shell: sudo chsh -s /bin/zsh gianm
|
|
|
|
|
|
|
|
- name: Install oh my zsh
|
|
|
|
become_user: gianm
|
|
|
|
shell: sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
|
|
|
|
|
|
|
|
- name: Setup shell env
|
|
|
|
copy:
|
|
|
|
src: files/zshrc
|
|
|
|
dest: ~/.zshrc
|
|
|
|
owner: gianm
|
|
|
|
group: gianm
|