dotfiles/roles/editors/helix/tasks/install_Ubuntu.yml

13 lines
246 B
YAML
Raw Normal View History

---
- name: Enable the PPA for Helix
ansible.builtin.apt_repository:
repo: ppa:maveonair/helix-editor
state: present
become: true
- name: Install the Helix
ansible.builtin.package:
name: helix
state: present
become: true