dotfiles/roles/editors/helix/tasks/main.yml
Matej Focko 0554e665c5
chore: move out user roles
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-07-12 21:23:02 +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