2023-02-15 13:23:52 +00:00
|
|
|
# vim: set ft=yaml.ansible:
|
|
|
|
---
|
|
|
|
|
|
|
|
- name: "Install debug tools"
|
|
|
|
hosts: all
|
|
|
|
become: true
|
|
|
|
tasks:
|
|
|
|
- name: "Install debug tools"
|
|
|
|
ansible.builtin.apt:
|
|
|
|
pkg:
|
|
|
|
- kitty
|
|
|
|
- neovim
|
|
|
|
- zsh
|
|
|
|
- zsh-autosuggestions
|
|
|
|
- zsh-syntax-highlighting
|
|
|
|
- zsh-theme-powerlevel9k
|
2023-09-29 10:58:35 +00:00
|
|
|
- silversearcher-ag
|
2023-07-04 10:26:32 +00:00
|
|
|
when:
|
|
|
|
- ansible_facts.os_family == "Debian"
|