fix neovim installation again

This commit is contained in:
Pim Kunis 2022-12-19 23:27:26 +01:00
parent d2ea5d5771
commit 97a654347f
8 changed files with 16 additions and 14 deletions

View file

@ -1,7 +1,13 @@
- name: Download Neovim PPA signing key
become: true
ansible.builtin.apt_key:
keyserver: keyserver.ubuntu.com
id: 9DBB0BE9366964F134855E2255F96FCF8231B6DD
keyring: /etc/apt/keyrings/neovim.gpg
- name: Install Neovim PPA
become: true
apt_repository:
repo: ppa:neovim-ppa/unstable
repo: "deb [signed-by=/etc/apt/keyrings/neovim.gpg] https://ppa.launchpadcontent.net/neovim-ppa/stable/ubuntu {{ ansible_distribution_release }} main"
state: present
- name: Install Neovim
become: true