dotfiles/roles/user/editors/helix/tasks/main.yml
Matej Focko 3f09655707
feat(editors/helix): add support for Helix
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-09-09 15:19:45 +02:00

16 lines
372 B
YAML

---
- name: Packages
ansible.builtin.include_tasks: "install_{{ ansible_distribution }}.yml"
tags: install
- name: Create directory for Helix config
ansible.builtin.file:
path: ~/.config/helix
state: directory
mode: 0744
- name: Install the config
ansible.builtin.copy:
src: files/config.toml
dest: ~/.config/helix/config.toml
mode: 0644