This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/neovim/tasks/main.yml
Pim Kunis d2ea5d5771 install neovim from PPA
fix zsh startup by removing asdf scripts
2022-12-18 13:03:12 +01:00

10 lines
194 B
YAML

- name: Install Neovim PPA
become: true
apt_repository:
repo: ppa:neovim-ppa/unstable
state: present
- name: Install Neovim
become: true
apt:
name: neovim
state: present