neovim

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

toml.vim (500B)


      1 " Vim filetype plugin
      2 " Language:    TOML
      3 " Homepage:    https://github.com/cespare/vim-toml
      4 " Maintainer:  Aman Verma
      5 " Author:      Lily Ballard <lily@ballards.net>
      6 " Last Change: May 5, 2025
      7 
      8 if exists('b:did_ftplugin')
      9  finish
     10 endif
     11 let b:did_ftplugin = 1
     12 
     13 let s:save_cpo = &cpo
     14 set cpo&vim
     15 let b:undo_ftplugin = 'setlocal commentstring< comments< iskeyword<'
     16 
     17 setlocal commentstring=#\ %s
     18 setlocal comments=:#
     19 setlocal iskeyword+=-
     20 
     21 let &cpo = s:save_cpo
     22 unlet s:save_cpo
     23 
     24 " vim: et sw=2 sts=2