diff options
Diffstat (limited to 'syntax/modules/brotli.vim')
-rw-r--r-- | syntax/modules/brotli.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/syntax/modules/brotli.vim b/syntax/modules/brotli.vim new file mode 100644 index 00000000..b6103d48 --- /dev/null +++ b/syntax/modules/brotli.vim @@ -0,0 +1,14 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 + +" Brotli Module <https://github.com/google/ngx_brotli> +" Nginx module for Brotli compression +syn keyword ngxDirectiveThirdParty brotli_static +syn keyword ngxDirectiveThirdParty brotli +syn keyword ngxDirectiveThirdParty brotli_types +syn keyword ngxDirectiveThirdParty brotli_buffers +syn keyword ngxDirectiveThirdParty brotli_comp_level +syn keyword ngxDirectiveThirdParty brotli_window +syn keyword ngxDirectiveThirdParty brotli_min_length + + +endif |