2

Mac OSX 10.7, Vim 7.3

I have installed Vundle for Vim, and I have included these lines in my ~/.vimrc:

Bundle "gmarik/vundle"
Bundle "pangloss/vim-javascript"
Bundle "https://github.com/digitaltoad/vim-jade.git"

I then run (in Vim): :BundleInstall!, and vim gives an agreeable Done! without mentioning any errors.

Javascript files are highlighted just fine. But when I open a jade file (express/views/index.jade), I don't get any color highlighting love.

What am I missing?

allanberry
  • 7,325
  • 6
  • 42
  • 71

2 Answers2

2

For the new version of Vundle, add this to your .vimrc:

Plugin 'digitaltoad/vim-jade'

and run

:PluginInstall

that works for me.

BoJack Horseman
  • 4,406
  • 13
  • 38
  • 70
hydRAnger
  • 3,013
  • 3
  • 18
  • 20
1

Just use the name of the repository

Bundle 'digitaltoad/vim-jade'

Then

$vim +BundleInstall! +BundleClean +q

Reload vim. Just worked for me.

BoJack Horseman
  • 4,406
  • 13
  • 38
  • 70
jdewit
  • 966
  • 9
  • 10