neovim

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

salt.vim (305B)


      1 " Vim syntax file
      2 " Maintainer: Gregory Anders
      3 " Last Changed: 2024-09-16
      4 
      5 if exists('b:current_syntax')
      6  finish
      7 endif
      8 
      9 " Salt state files are just YAML with embedded Jinja
     10 runtime! syntax/yaml.vim
     11 unlet! b:current_syntax
     12 
     13 runtime! syntax/jinja.vim
     14 unlet! b:current_syntax
     15 
     16 let b:current_syntax = 'salt'