Signed-off-by: Alejandro Mery <amery@geeks.cl>
@ -0,0 +1,13 @@
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
finish
endif
" case sensitive
syn case match
syn match rcComment "^[ \t]*#.*$"
hi link rcComment Comment
let b:current_syntax = "androidrc"