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

View File

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

View File

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

View File

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