blob: 1f52c49b274dce786978061fb3dc298d6f038d98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
let files = filter(globpath(&rtp, 'syntax/brewfile.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
if len(files) > 0
exec 'source ' . files[0]
finish
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'brewfile') == -1
" Vim syntax file
" Language: Brewfile
" Maintainer: Baptiste Fontaine <b@ptistefontaine.fr>
" URL: https://github.com/bfontaine/Brewfile.vim
" Last Change: 2015 Jun 18
if exists("b:current_syntax")
finish
endif
" Load ruby syntax
source $VIMRUNTIME/syntax/ruby.vim
unlet b:current_syntax
syn keyword brewfileDirective brew cask tap mas cask_args
hi def link brewfileDirective Keyword
let b:current_syntax = "brewfile"
endif
|