Created
April 11, 2013 08:25
-
-
Save choplin/5361698 to your computer and use it in GitHub Desktop.
vim syntax for fluentd configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if version < 600 | |
| syntax clear | |
| elseif exists("b:current_syntax") | |
| finish | |
| endif | |
| runtime! syntax/xml.vim | |
| unlet b:current_syntax | |
| syn match fluentdComment "#.*" | |
| hi def link fluentdComment Comment | |
| let b:current_syntax = "fluentd" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment