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

11 lines
194 B
YAML
Raw Normal View History

- name: Install Neovim PPA
2022-12-02 19:10:38 +00:00
become: true
apt_repository:
repo: ppa:neovim-ppa/unstable
state: present
- name: Install Neovim
2022-12-02 19:10:38 +00:00
become: true
apt:
name: neovim
state: present