Skip to content

Instantly share code, notes, and snippets.

@choplin
Created April 11, 2013 08:25
Show Gist options
  • Select an option

  • Save choplin/5361698 to your computer and use it in GitHub Desktop.

Select an option

Save choplin/5361698 to your computer and use it in GitHub Desktop.
vim syntax for fluentd configuration
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