update vim options

This commit is contained in:
Ruben Blanco 2023-10-20 09:05:56 +02:00
parent 0b45ce782d
commit bca6069654
1 changed files with 9 additions and 7 deletions

View File

@ -249,12 +249,14 @@
mode: '0644'
# step2 - add some options to the file
- name: add some options to vimrc.local
blockinfile:
lineinfile:
path: "{{ path_vimrclocal }}"
block: |
syntax on
set showcmd
set showmatch
set ignorecase
set smartcase
line: "{{item.line}}"
state: present
with_items:
- line: syntax on
- line: set showcmd
- line: set showmatch
- line: set ignorecase
- line: set smartcase
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++