more fixes, more config

This commit is contained in:
Matthew Stobbs
2025-01-25 17:39:49 -07:00
parent 00e08c5997
commit 4665de577e
18 changed files with 61 additions and 70 deletions

View File

@@ -3,15 +3,14 @@
file: neovim.yml
name: _neovim
- ansible.builtin.set_fact:
pkgconfig:
neovim: "{{ _neovim | ansible.builtin.combine(pkgconfig.neovim) }}"
pkgconfig_neovim: "{{ _neovim | ansible.builtin.combine(pkgconfig.neovim) }}"
- name: append neovim to srcpkgs
when: not pkgconfig.neovim.use_syspkg
when: not pkgconfig_neovim.use_syspkg
set_fact:
srcpkgs: "{{ srcpkgs + ['neovim'] }}"
- name: append neovim to syspkgs
when: pkgconfig.neovim.use_syspkg
when: pkgconfig_neovim.use_syspkg
set_fact:
syspkgs: "{{ syspkgs + ['neovim'] }}"