18 lines
444 B
YAML
18 lines
444 B
YAML
---
|
|
- ansible.builtin.include_vars:
|
|
file: neovim.yml
|
|
name: _neovim
|
|
- ansible.builtin.set_fact:
|
|
pkgconfig:
|
|
neovim: "{{ _neovim | ansible.builtin.combine(pkgconfig.neovim) }}"
|
|
|
|
- name: append neovim to srcpkgs
|
|
when: not pkgconfig.neovim.use_syspkg
|
|
set_fact:
|
|
srcpkgs: "{{ srcpkgs + ['neovim'] }}"
|
|
|
|
- name: append neovim to syspkgs
|
|
when: pkgconfig.neovim.use_syspkg
|
|
set_fact:
|
|
syspkgs: "{{ syspkgs + ['neovim'] }}"
|