Add vim task
This commit is contained in:
parent
3d02ac372f
commit
b249245bb6
3 changed files with 19 additions and 0 deletions
|
@ -6,3 +6,4 @@
|
||||||
file: vars.yml
|
file: vars.yml
|
||||||
- import_tasks: tasks/common.yml
|
- import_tasks: tasks/common.yml
|
||||||
- import_tasks: tasks/config.yml
|
- import_tasks: tasks/config.yml
|
||||||
|
- import_tasks: tasks/vim.yml
|
||||||
|
|
18
tasks/vim.yml
Normal file
18
tasks/vim.yml
Normal 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
|
Loading…
Reference in a new issue