Skip to content
Snippets Groups Projects
Commit e8c45f84 authored by Maxime Bombar's avatar Maxime Bombar
Browse files

Install simple .emacs

parent fc0e5f63
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
patterns: config*
register: ssh_config
when: not ansible_check_mode
- name: Deploy ssh configuration
file:
src: /home/{{ ansible_user}}/Git/Config_Files/.ssh/{{ item.path | basename }}
......@@ -30,14 +30,18 @@
loop: "{{ ssh_config.files }}"
when: not ansible_check_mode
- name: Deploy general configuration
- name: Deploy .gitconfig
file:
src: /home/{{ ansible_user}}/Git/Config_Files/{{ item }}
dest: /home/{{ ansible_user }}/{{ item }}
src: /home/{{ ansible_user}}/Git/Config_Files/.gitconfig
dest: /home/{{ ansible_user }}/.gitconfig
state: link
when: not ansible_check_mode
- name: Deploy .emacs
file:
src: /home/{{ ansible_user}}/Git/Config_Files/.emacs_simple
dest: /home/{{ ansible_user }}/.emacs
state: link
loop:
- .emacs
- .gitconfig
when: not ansible_check_mode
- name: Deploy zsh config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment