21 lines
660 B
YAML
21 lines
660 B
YAML
|
- name: Setup doom emacs
|
||
|
when: "'emacs' in setup"
|
||
|
tags: [doom,emacs]
|
||
|
block:
|
||
|
- name: Remove old emacs config
|
||
|
file: state=absent path=/home/{{ name }}/.emacs.d
|
||
|
- name: Git clone doom emacs
|
||
|
git:
|
||
|
repo: https://github.com/hlissner/doom-emacs
|
||
|
dest: /home/{{ name }}/.emacs.d
|
||
|
accept_newhostkey: yes
|
||
|
single_branch: yes
|
||
|
version: master
|
||
|
depth: 1
|
||
|
- name: Install doom emacs
|
||
|
shell: |
|
||
|
chown -R {{ name }} /home/{{ name }}/.emacs.d
|
||
|
echo "y\ny"|su {{ name }} /home/{{ name }}/.emacs.d/bin/doom install
|
||
|
#* ^ Above we answer terminal prompts
|
||
|
# - name: Add doom emacs config
|
||
|
# - name: Run doom sync
|