Gregory Anders | 89b9bb4 | 2024-09-17 20:16:37 +0200 | [diff] [blame] | 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' |