Files
dotfiles/setup-script/roles/editor/tasks/main.yaml
T
2026-08-06 20:04:50 +02:00

12 lines
343 B
YAML

- name: Install Neovim on Arch
become: true
ansible.builtin.pacman:
name: neovim
when: chezmoi.osRelease.id == "arch"
- name: Install the clipboard manager
become: true
ansible.builtin.pacman:
name: "{{ 'wl-clipboard' if lookup('env', 'XDG_SESSION_TYPE') == 'wayland' else 'xclip' }}"
when: chezmoi.osRelease.id == "arch"