diff options
Diffstat (limited to 'vim/ftdetect/coffee.vim')
| -rw-r--r-- | vim/ftdetect/coffee.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vim/ftdetect/coffee.vim b/vim/ftdetect/coffee.vim new file mode 100644 index 0000000..e1c1314 --- /dev/null +++ b/vim/ftdetect/coffee.vim @@ -0,0 +1,7 @@ +" Language: CoffeeScript +" Maintainer: Mick Koch <kchmck@gmail.com> +" URL: http://github.com/kchmck/vim-coffee-script +" License: WTFPL + +autocmd BufNewFile,BufRead *.coffee set filetype=coffee +autocmd BufNewFile,BufRead *Cakefile set filetype=coffee |