Doom emacs installation

This commit is contained in:
exu 2024-10-11 17:41:12 +02:00
parent beb09ad157
commit 90e0e06ae0
2 changed files with 17 additions and 4 deletions

View File

@ -3,6 +3,7 @@
## Tags
| Tag | Explaination |
| -------- | --------------------------------------------------------------------------------------------------------------------- |
| --------- | --------------------------------------------------------------------------------------------------------------------- |
| first | Enable multilib repo. Only required the first time, later finished runs are already configured with the `config` role |
| packages | Install required packages |
| doomemacs | Download and install Doom Emacs |

View File

@ -197,3 +197,15 @@
# - btrfsmaintenance # AUR
tags: packages
become: true
- name: Clone doom emacs
ansible.builtin.git:
repo: https://github.com/SillyTavern/SillyTavern
dest: "~/.config/emacs"
depth: 1
tags: doomemacs
- name: Install doom emacs
ansible.builtin.shell:
cmd: "~/.config/emacs/bin/doom install"
tags: doomemacs