18 lines
504 B
YAML
18 lines
504 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- 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
|
|
ansible.builtin.set_fact:
|
|
srcpkgs: "{{ srcpkgs + ['neovim'] }}"
|
|
when: not pkgconfig_neovim.use_syspkg
|
|
|
|
- name: append neovim to syspkgs
|
|
ansible.builtin.set_fact:
|
|
syspkgs: "{{ syspkgs + ['neovim'] }}"
|
|
when: pkgconfig_neovim.use_syspkg
|