Initial commit

This commit is contained in:
2021-03-30 20:01:47 +02:00
commit ddaecabe97
15 changed files with 212 additions and 0 deletions

9
neomake.vim Normal file
View File

@@ -0,0 +1,9 @@
" When writing a buffer (no delay).
call neomake#configure#automake('w')
" When writing a buffer (no delay), and on normal mode changes (after 750ms).
call neomake#configure#automake('nw', 750)
" When reading a buffer (after 1s), and when writing (no delay).
call neomake#configure#automake('rw', 1000)
" Full config: when writing or reading a buffer, and on changes in insert and
" normal mode (after 500ms; no delay when writing).
call neomake#configure#automake('nrwi', 500)