2024-11-12 17:01:55 +01:00
|
|
|
---
|
|
|
|
- name: Doom Emacs | Check if installed
|
|
|
|
ansible.builtin.stat:
|
|
|
|
path: "~/.config/emacs/bin/doom"
|
|
|
|
register: doom_emacs
|
|
|
|
tags: config
|
|
|
|
|
|
|
|
- name: Doom Emacs | Update if present - aync
|
|
|
|
ansible.builtin.shell:
|
2025-03-06 21:29:58 +01:00
|
|
|
cmd: "~/.config/emacs/bin/doom sync --gc -j $(nproc)"
|
2024-11-12 17:01:55 +01:00
|
|
|
when: doom_emacs.stat.exists
|
|
|
|
async: 600
|
|
|
|
poll: 0
|
|
|
|
register: async_doom_emacs
|
|
|
|
tags: config
|