Add custom gvimrc
gvim has a light background, so the "default" theme is light, which is painful.
This commit is contained in:
parent
bcce8c63ba
commit
e4670882f1
2 changed files with 12 additions and 0 deletions
4
files/gvimrc
Normal file
4
files/gvimrc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{% include "vimrc" %}
|
||||||
|
|
||||||
|
" Override the color scheme. gvim has a light background by default
|
||||||
|
colo slate
|
|
@ -14,6 +14,14 @@
|
||||||
owner: "{{ user }}"
|
owner: "{{ user }}"
|
||||||
group: users
|
group: users
|
||||||
|
|
||||||
|
- name: Install gvimrc
|
||||||
|
template:
|
||||||
|
src: ./files/gvimrc
|
||||||
|
dest: "{{ home }}/.gvimrc"
|
||||||
|
mode: 0644
|
||||||
|
owner: "{{ user }}"
|
||||||
|
group: users
|
||||||
|
|
||||||
- name: Install vimrc for root user
|
- name: Install vimrc for root user
|
||||||
copy:
|
copy:
|
||||||
src: ./files/vimrc
|
src: ./files/vimrc
|
||||||
|
|
Loading…
Reference in a new issue