VimのNeoBundleでCoffeeScriptがシンタックスハイライトされない

https://github.com/gmarik/Vundle.vim/issues/202

filetype onとfiletype offの間にvim-coffee-scriptを宣言する

call neobundle#rc(expand('~/.vim/bundle/'))
syntax on
syntax enable

filetype off
NeoBundle 'kchmck/vim-coffee-script' "this should come between filetype off-on

filetype plugin indent on