local/roles/neovim/tasks/Debian.yaml

17 lines
329 B
YAML

---
- name: add neovim stable ppa
when: ansible_distribution == 'Ubuntu' and
ansible_distribution_version == '20.04'
become: true
apt_repository:
repo: ppa:neovim-ppa/stable
update_cache: true
- name: install apt package
become: true
apt:
name: neovim
state: latest
- include_tasks: Unix.yaml