Set lit[.local].cfg to Python & disable ALE

This commit is contained in:
Kenneth Benzie 2018-06-04 11:25:57 +01:00
parent 1be7ef4250
commit 970c674381

View File

@ -0,0 +1,7 @@
function! s:set_lit_cfg_filetype()
set filetype=python
ALEDisableBuffer
endfunction
au BufNewFile,BufReadPost lit.cfg call s:set_lit_cfg_filetype()
au BufNewFile,BufReadPost lit.local.cfg call s:set_lit_cfg_filetype()