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

This commit is contained in:
Kenneth Benzie 2018-06-04 11:25:57 +01:00
parent 39d6eab8a3
commit 47820a1701

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