7 lines
204 B
VimL
7 lines
204 B
VimL
function! s:set_lit_cfg_filetype()
|
|
set filetype=python
|
|
endfunction
|
|
|
|
au BufNewFile,BufReadPost lit.cfg call s:set_lit_cfg_filetype()
|
|
au BufNewFile,BufReadPost lit.local.cfg call s:set_lit_cfg_filetype()
|