Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enable Vim syntax highlighting regardless of filename extension

Tags:

vim

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.

like image 986
hllau Avatar asked Mar 03 '12 05:03

hllau


2 Answers

Put this in your .vimrc :

au BufReadPost *.conf set syntax=ini
like image 86
tUrG0n Avatar answered Nov 15 '22 14:11

tUrG0n


I was having the same issue on my Arch linux desktop. I found these files owned by the vim-runtime package.

$ pacman -Qlq vim-runtime | grep dosini
/usr/share/vim/vim74/ftplugin/dosini.vim
/usr/share/vim/vim74/syntax/dosini.vim

Based on that, I found I could get dosini highlighting either by setting the syntax (syn) or the filetype (ft).

:set ft=dosini

You can have this happen automatically with a vim modeline. Add this to the last line of your file.

# vim: set ft=dosini :
like image 27
carlwgeorge Avatar answered Nov 15 '22 16:11

carlwgeorge