local/roles/neovim/tasks/Debian.yaml

19 lines
360 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
- python3-neovim
state: latest
- include_tasks: Unix.yaml