neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

confini.vim (418B)


      1 " Vim syntax file
      2 " Language: confini
      3 " Last Change:
      4 " 2025 May 02 by Vim project commented line starts with # only
      5 
      6 " Quit if a syntax file was already loaded
      7 if exists("b:current_syntax")
      8  finish
      9 endif
     10 
     11 " Use the cfg syntax for now, it's similar.
     12 runtime! syntax/cfg.vim
     13 
     14 " Only accept '#' as the start of a comment.
     15 syn clear CfgComment
     16 syn match CfgComment "#.*" contains=@Spell
     17 
     18 let b:current_syntax = 'confini'