diff options
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 1448194b..c61fa086 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -242,6 +242,13 @@ autocmd BufNewFile,BufReadPost *.feature,*.story set filetype=cucumber augroup end endif +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cue') == -1 + augroup filetypedetect + " cue, from cuesheet.vim in mgrabovsky/vim-cuesheet +autocmd BufRead,BufNewFile *.cue set filetype=cuesheet + augroup end +endif + if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dart') == -1 augroup filetypedetect " dart, from dart.vim in dart-lang/dart-vim-plugin |