diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-09-11 13:38:46 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-09-11 13:38:46 +0200 |
commit | 9b239101032ad3c08b2ec11d31e1845f8aa4ecac (patch) | |
tree | a8da136a425e2c148816a25af184a0b36d081135 /ftdetect | |
parent | 98e021e969637da8e88e66a0055f3a40ef4fcdfc (diff) | |
download | vim-polyglot-9b239101032ad3c08b2ec11d31e1845f8aa4ecac.tar.gz vim-polyglot-9b239101032ad3c08b2ec11d31e1845f8aa4ecac.zip |
Add raml syntax highlighting, closes #155
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 7 |
1 files changed, 7 insertions, 0 deletions
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 |