26 lines
569 B
YAML
26 lines
569 B
YAML
|
---
|
||
|
# Installing zsh and its dependency
|
||
|
|
||
|
- name: (Deb) Installing packages around zsh
|
||
|
ansible.builtin.apt:
|
||
|
name:
|
||
|
- zsh
|
||
|
- zsh-autosuggestions
|
||
|
- zsh-syntax-highlighting
|
||
|
state: present
|
||
|
update_cache: true
|
||
|
when: ansible_distribution == 'Debian'
|
||
|
become: true
|
||
|
|
||
|
- name: (ubu) Installing packages around zsh
|
||
|
ansible.builtin.apt:
|
||
|
name:
|
||
|
- zsh
|
||
|
- zsh-autosuggestions
|
||
|
- zsh-syntax-highlighting
|
||
|
- zsh-theme-powerlevel9k
|
||
|
state: present
|
||
|
update_cache: true
|
||
|
when: ansible_distribution == 'Ubuntu'
|
||
|
become: true
|