dotfiles/roles/zsh/tasks/install/alpine.yml

15 lines
325 B
YAML

---
- name: (Alpine) Installing packages around zsh
community.general.apk:
name:
- zsh
- zsh-completions
- zsh-autosuggestions
- zsh-syntax-highlighting
- zsh-history-substring-search
- zsh-theme-powerlevel10k
- zsh-vcs
state: present
update_cache: true
become: true