Add vim task

This commit is contained in:
Jake Howard 2018-09-10 09:04:26 +01:00
parent 3d02ac372f
commit b249245bb6
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 19 additions and 0 deletions

View File

@ -6,3 +6,4 @@
file: vars.yml
- import_tasks: tasks/common.yml
- import_tasks: tasks/config.yml
- import_tasks: tasks/vim.yml

18
tasks/vim.yml Normal file
View File

@ -0,0 +1,18 @@
- copy:
src: ./files/vimrc
dest: /home/jake/.vimrc
mode: 0644
owner: jake
group: users
- copy:
src: ./files/vimrc
dest: /root/.vimrc
mode: 0644
owner: root
group: users
- git:
repo: https://github.com/amix/vimrc.git
dest: /usr/share/amix_vimrc
force: true