dotfiles/playbooks/roles/gentoo/tasks/neovim-nightly.yml

27 lines
501 B
YAML

---
- name: ensure copr command installed
become: yes
become_method: sudo
dnf:
name:
- dnf-command(copr)
state: latest
- name: Add neovim-nightly copr
become: yes
become_method: sudo
when:
- nightly_neovim == true
command:
cmd: dnf copr enable -y agriffis/neovim-nightly
warn: false
creates: /etc/yum.repos.d/_copr_agriffis_neovim-nightly.repo
- name: Install neovim
become: yes
become_method: sudo
dnf:
name:
- neovim
state: latest