13 lines
209 B
YAML
13 lines
209 B
YAML
---
|
|
- name: Install neovim
|
|
ansible.builtin.apt:
|
|
name: neovim
|
|
state: latest
|
|
update_cache: true
|
|
|
|
- name: Install htop
|
|
ansible.builtin.apt:
|
|
name: htop
|
|
state: latest
|
|
update_cache: true
|