vim: Allow install task to fail, fix copy task for colorscheme

This commit is contained in:
Johanna Dorothea Reichmann 2019-05-26 19:49:27 +02:00
parent 95fd08b44a
commit 7e2a5118ec
Signed by: transcaffeine
GPG Key ID: 03624C433676E465
3 changed files with 5 additions and 2 deletions

Binary file not shown.

View File

@ -4,8 +4,11 @@
package: package:
name: vim name: vim
state: present state: present
become: true
become_user: root
ignore_errors: yes
- name.: Ensure ~/.vim/colors folder exists - name: Ensure ~/.vim/colors folder exists
file: file:
path: ~/.vim/colors path: ~/.vim/colors
state: directory state: directory
@ -13,7 +16,7 @@
- name: Copy kuroi color scheme - name: Copy kuroi color scheme
copy: copy:
src: kuroi.vim.j2 src: kuroi.vim
dest: ~/.vim/colors/kuroi.vim dest: ~/.vim/colors/kuroi.vim
- name: Template vim config - name: Template vim config