" https://vim.fandom.com/wiki/Creating_your_own_syntax_files " Vim syntax file " Language: Celestia Star Catalogs " Maintainer: Kevin Lauder " Latest Revision: 26 April 2008 if exists("b:current_syntax") finish endif let b:current_syntax = "earlpy" " Matches syn match basicKeywords "\zs.*\ze$" syn match literalTag "\zs .*\ze$" syn match comment "\zs#.*\ze$" hi def link literalTag Type hi def link basicKeywords Keyword hi def link comment Comment