feat: update neovim ftplugins headers

This commit is contained in:
David 2020-09-03 14:28:52 +02:00
parent f70a7179d9
commit 47bd30f9f5
5 changed files with 28 additions and 19 deletions

View File

@ -1,5 +1,7 @@
" groff filetype config " Author : swytch
" Licence MIT " Created : 06/05/2020
" License : MIT
" Description : groff filetype config
inoremap <buffer> à \[`a] inoremap <buffer> à \[`a]
inoremap <buffer> 'A \[`A] inoremap <buffer> 'A \[`A]
@ -20,9 +22,9 @@ inoremap <buffer> ô \[^o]
inoremap <buffer> Ô \[^O] inoremap <buffer> Ô \[^O]
inoremap <buffer> û \[^u] inoremap <buffer> û \[^u]
inoremap <buffer> ù \[`u] inoremap <buffer> ù \[`u]
" Espace insécable devant etc " Unbreakable space before 'etc'
inoremap <buffer> <Space>etc \~etc. inoremap <buffer> <Space>etc \~etc.
" Espace insécable devant ':' " Unbreakable space before ':'
inoremap <buffer> <Space>: \~: inoremap <buffer> <Space>: \~:
" Centered point " Centered point
inoremap <buffer> .. \[u00B7] inoremap <buffer> .. \[u00B7]

View File

@ -1,9 +1,11 @@
" python filetype config " Author : swytch
" Licence MIT " Created : 06/05/2020
" License : MIT
" Description : python filetype config
" proper PEP 8 indentation " PEP8
set tabstop=4 set tabstop=4
set softtabstop=4 set softtabstop=4
set shiftwidth=4 set shiftwidth=4
set textwidth=79 set textwidth=80
set expandtab set expandtab

View File

@ -1,9 +1,15 @@
" tex filetype config " Author : swytch
" Licence MIT " Created : 06/05/2020
" License : MIT
" Description : tex filetype config
" spellcheck enabled " spellcheck enabled
setlocal spell spelllang=fr setlocal spell spelllang=fr
" Caps
inoremap <buffer> AA À
inoremap <buffer> CC Ç
inoremap <buffer> EE É
" Unbreakable space before 'etc' " Unbreakable space before 'etc'
inoremap <buffer> <Space>etc \,etc. inoremap <buffer> <Space>etc \,etc.
" Unbreakable space before ':' " Unbreakable space before ':'
@ -20,8 +26,3 @@ inoremap <buffer> BB \textbf{}<Esc>i
inoremap <buffer> BI \textit{\textbf{}}<Esc>hi inoremap <buffer> BI \textit{\textbf{}}<Esc>hi
" Smallcaps " Smallcaps
inoremap <buffer> SC \fsc{}<Esc>i inoremap <buffer> SC \fsc{}<Esc>i
" Caps
inoremap <buffer> AA À
inoremap <buffer> CC Ç
inoremap <buffer> EE É

View File

@ -1,4 +1,6 @@
" vim filetype config " Author : swytch
" Licence MIT " Created : 06/05/2020
" License : MIT
" Description : vim filetype config
setlocal spell spelllang=fr,en_us setlocal spell spelllang=fr,en_us

View File

@ -1,4 +1,6 @@
" verilog fietype config " Author : swytch
" Licence MIT " Created : 06/05/2020
" License : MIT
" Description : verilog fietype config
noremap <leader><Enter> :w! \| :CoqRunToCursor<CR> noremap <leader><Enter> :w! \| :CoqRunToCursor<CR>