workstation/arch/roles/emacs/tasks/main.yml

12 lines
229 B
YAML
Raw Normal View History

- name: Install Emacs
become: yes
pacman:
name: emacs
state: present
- name: Configure Emacs
command:
chdir: "{{ ansible_env.HOME }}/dotfiles"
cmd: stow emacs
creates: "{{ ansible_env.HOME }}/init.org"