15 lines
369 B
YAML
15 lines
369 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to pkgs
|
|
when:
|
|
- ansible_system == 'Linux'
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + neovide.deps }}"
|
|
pkg_cargo: "{{ pkg_cargo + [neovide] }}"
|
|
|
|
- name: Append neovide to caskpkgs
|
|
when:
|
|
- ansible_system == 'Darwin'
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + ['neovide'] }}"
|