dotfiles/playbooks/roles/shell/tasks/main.yml
Matej Focko 55fee79589
Add installation of Doom Emacs to playbook
Signed-off-by: Matej Focko <matej.focko@outlook.com>
2020-10-11 17:11:52 +02:00

19 lines
No EOL
306 B
YAML

---
- name: Install all packages for shell
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present
- name: Set default shell and generate SSH key
user:
name: mfocko
shell: /bin/zsh
- include: nvim.yml
- include: emacs.yml
- include: zsh.yml
- include: tmux.yml