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

This commit is contained in:
Kenneth Benzie 2018-06-04 11:25:57 +01:00
parent 5625c0d17a
commit a243d48d9a

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()