Files
ansible_role_package/tasks/pkgs/neovide.yml
Matthew Stobbs c0400949c3 more packages fixed
- removed nushell. Not using it, not going to use again anytime soon
2025-02-20 12:22:50 -07:00

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'] }}"