Set filetypes for some files

This commit is contained in:
Oliver Hartmann 2021-09-12 20:54:54 +02:00
parent ccade921f9
commit 9b0dc1fe06

View File

@ -34,10 +34,10 @@ local autocmds = {
};
file_type = {
{'BufRead,BufNewFile', '*.simvis', 'set filetype=xml'};
{'BufRead,BufNewFile', '*.simcfg,*.simcon,*.simudex', 'set filetype=cfg'}
{'BufRead,BufNewFile', 'Jenkinsfile*', 'set filetype=groovy'}
{'BufRead,BufNewFile', '*.manifest', 'set filetype=xml'}
{'BufRead,BufNewFile', 'SConstruct,SConscript', 'set filetype=python'}
{'BufRead,BufNewFile', '*.simcfg,*.simcon,*.simudex', 'set filetype=cfg'};
{'BufRead,BufNewFile', 'Jenkinsfile*', 'set filetype=groovy'};
{'BufRead,BufNewFile', '*.manifest', 'set filetype=xml'};
{'BufRead,BufNewFile', 'SConstruct,SConscript', 'set filetype=python'};
}
}