Try fix directory copy and add moc config
Esse commit está contido em:
@@ -43,12 +43,18 @@
|
||||
state: latest
|
||||
|
||||
- name: Copy .vim/
|
||||
template:
|
||||
copy:
|
||||
src: files/vim/
|
||||
dest: /home/{{ item.username }}/.vim/
|
||||
owner: "{{ item.username }}"
|
||||
with_items: "{{ me }}"
|
||||
|
||||
- name: Creates .vim/autoload/
|
||||
file:
|
||||
path: /home/{{ item.username }}/.vim/autoload/
|
||||
state: directory
|
||||
with_items: "{{ me }}"
|
||||
|
||||
- name: Download plug.vim
|
||||
get_url:
|
||||
url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
@@ -62,3 +68,11 @@
|
||||
dest: /home/{{ item.username }}/.vimrc
|
||||
owner: "{{ item.username }}"
|
||||
with_items: "{{ me }}"
|
||||
|
||||
- name: Copy .moc/
|
||||
copy:
|
||||
src: files/moc/
|
||||
dest: /home/{{ item.username }}/.moc/
|
||||
owner: "{{ item.username }}"
|
||||
with_items: "{{ me }}"
|
||||
when: not minimal
|
||||
|
Referência em uma nova issue
Block a user