From cb574b283fd19eea20d95c768b64c6b805d81690 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Tue, 26 Jul 2016 14:06:32 +0200 Subject: Add livescript, closes #135 --- ftdetect/polyglot.vim | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ftdetect') diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 6e032523..caa6ad5e 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -475,6 +475,19 @@ au BufNewFile,BufRead */templates/**.liquid,*/layout/**.liquid,*/snippets/**.liq endif +" ftdetect/ls.vim +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'livescript') == -1 + +" Language: LiveScript +" Maintainer: George Zahariev +" URL: http://github.com/gkz/vim-ls +" License: WTFPL +" +autocmd BufNewFile,BufRead *.ls set filetype=ls +autocmd BufNewFile,BufRead *Slakefile set filetype=ls + +endif + " ftdetect/mako.vim if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'mako') == -1 -- cgit v1.2.3