views:

132

answers:

3

I'm (attempting) to move from textmate to vim [macvim to be exact] as my primary editor. I have already installed snipmate - wondering if there are other plugins you would suggest I install?

In particular I seem to be having a lot of trouble with indenting (<< seems to really do some very strange/unpredictable things), and I can't seem to find a solution for this - are there plugins I need for this to work properly?

Thanks!

A: 

I am not sure what you need exactly as I have not used textmate. But I do use these Plugins for VIM. They have helped me a lot.

MovieYoda
+2  A: 

For source code,

:h =

For text,

:h gq
wilhelmtell
+1  A: 

Set the filetype setting in your vimrc file

filetype plugin indent on

That should enable filetype plugins and automatic indentation

Rohit Viswanath