From 9b239101032ad3c08b2ec11d31e1845f8aa4ecac Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Sun, 11 Sep 2016 13:38:46 +0200 Subject: Add raml syntax highlighting, closes #155 --- ftdetect/polyglot.vim | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ftdetect') diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index cc1ade60..d036f661 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -708,6 +708,13 @@ autocmd BufRead,BufNewFile *.qml setfiletype qml endif +" ftdetect/raml.vim +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'raml') == -1 + +au BufRead,BufNewFile *.raml set ft=raml + +endif + " ftdetect/ruby.vim if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ruby') == -1 -- cgit v1.2.3