Add custom gvimrc

gvim has a light background, so the "default" theme is light, which is painful.
This commit is contained in:
Jake Howard 2021-07-01 22:50:08 +01:00
parent bcce8c63ba
commit e4670882f1
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 12 additions and 0 deletions

4
files/gvimrc Normal file
View File

@ -0,0 +1,4 @@
{% include "vimrc" %}
" Override the color scheme. gvim has a light background by default
colo slate

View File

@ -14,6 +14,14 @@
owner: "{{ user }}"
group: users
- name: Install gvimrc
template:
src: ./files/gvimrc
dest: "{{ home }}/.gvimrc"
mode: 0644
owner: "{{ user }}"
group: users
- name: Install vimrc for root user
copy:
src: ./files/vimrc