15 lines
313 B
YAML
15 lines
313 B
YAML
|
---
|
||
|
# Installing zsh and its dependency
|
||
|
|
||
|
- name: (Void) Installing packages around zsh
|
||
|
community.general.xbps:
|
||
|
name:
|
||
|
- zsh
|
||
|
- zsh-completions
|
||
|
- zsh-autosuggestions
|
||
|
- zsh-syntax-highlighting
|
||
|
- zsh-history-substring-search
|
||
|
state: present
|
||
|
update_cache: true
|
||
|
become: true
|