Compare commits

...

2 Commits

Author SHA1 Message Date
72214b56c4 Fix: copy snippets 2020-09-29 09:15:25 +02:00
b497e43d30 Feat: enable spell check 2020-09-03 09:48:50 +02:00
2 changed files with 5 additions and 4 deletions

View File

@ -48,6 +48,9 @@ set ignorecase " Ignore case while searching
set smartcase " Override ignorecase if search patern contains upper case set smartcase " Override ignorecase if search patern contains upper case
set wildmenu " Enable wildmenu set wildmenu " Enable wildmenu
set spell " Enable spell checking
set spelllang=fr
"set autochdir " Your working directory will always be the same as your working directory "set autochdir " Your working directory will always be the same as your working directory
execute "set colorcolumn=" . join(range(81,335), ',') execute "set colorcolumn=" . join(range(81,335), ',')

View File

@ -171,11 +171,9 @@
# coc snippets # coc snippets
- name: dotfiles -- Copying snippets - name: dotfiles -- Copying snippets
file: copy:
src: files/dotfiles/ultisnips src: files/dotfiles/ultisnips/
dest: /home/{{ item.username }}/.config/coc/ultisnips dest: /home/{{ item.username }}/.config/coc/ultisnips
state: directory
owner: "{{ item.username }}" owner: "{{ item.username }}"
group: "{{ item.group }}" group: "{{ item.group }}"
with_items: "{{ dotusers }}" with_items: "{{ dotusers }}"
when: prompt == 'fish'