Initial commit
This commit is contained in:
9
neomake.vim
Normal file
9
neomake.vim
Normal 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)
|
||||
Reference in New Issue
Block a user