diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2014-04-15 01:14:47 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2014-04-15 01:14:47 +0200 |
commit | 0b50acdddfb5a90f7b6c21b9c299452fe9b68534 (patch) | |
tree | 3b50dcd52dab4fddba05f7e95504a9ecede2bff9 /ftdetect | |
parent | daa6fc695890085c23851ddb07f313adcd47a50a (diff) | |
download | vim-polyglot-0b50acdddfb5a90f7b6c21b9c299452fe9b68534.tar.gz vim-polyglot-0b50acdddfb5a90f7b6c21b9c299452fe9b68534.zip |
Add Ember Script
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index b385d1d8..34e77b48 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -15,6 +15,8 @@ autocmd BufNewFile,BufReadPost *.feature,*.story set filetype=cucumber au BufNewFile,BufRead Dockerfile set filetype=dockerfile au BufRead,BufNewFile *.ex,*.exs set filetype=elixir au FileType elixir setl sw=2 sts=2 et iskeyword+=!,? +autocmd BufNewFile,BufRead *.em set filetype=ember-script +autocmd FileType ember-script set tabstop=2|set shiftwidth=2|set expandtab autocmd BufNewFile,BufRead *.git/{,modules/**/}{COMMIT_EDIT,TAG_EDIT,MERGE_,}MSG set ft=gitcommit autocmd BufNewFile,BufRead *.git/config,.gitconfig,.gitmodules set ft=gitconfig autocmd BufNewFile,BufRead */.config/git/config set ft=gitconfig |