diff options
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 5909463b..24b77afb 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1155,6 +1155,11 @@ if index(g:polyglot_disabled, 'mcfunction') == -1 au BufNewFile,BufRead *.mcfunction set ft=mcfunction endif +if index(g:polyglot_disabled, 'jq') == -1 + au BufNewFile,BufRead *.jq set ft=jq + au BufNewFile,BufRead {.,}jqrc set ft=jq +endif + " restore Vi compatibility settings let &cpo = s:cpo_save unlet s:cpo_save
\ No newline at end of file |