dotfiles/roles/editor_helix/tasks/main.yml
Matej Focko a11b009120
chore: rename ‹editor› group of roles
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-12-12 16:08:45 +01: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