I am opening a file with no extension with vim, say:
myappsetting.conf
This file is actually a *.ini file, with following formats:
[setting_a]
yo = 1234
How can I enable vim to correctly display this file with colour with the correct format?
I am looking for some vim command like:
:set syntaxtype=ini
Thanks.