vote up 15 vote down star
6

How do I make Vi-Vim never use tabs (converting spaces to tabs, bad!), makes the tab key == 4 spaces, and automatically indent code after curly brace blocks like emacs does?

Also, how do I save these settings so I never have to input them again.

I've seen other questions related to this but it always seems to be a little off from what I want.

flag

64% accept rate

6 Answers

vote up 22 vote down check

in your .vimrc:

set smartindent
set tabstop=4
set shiftwidth=4
set expandtab

The help files take a bit of time to get used to but the more you read the better vim gets:

:help smartindent

Even better, you can embed these settings in your source for portability:

:help auto-setting

To see your current settings:

:set all

link|flag
Thats the ticket, thanks ken! – Simucal Oct 24 '08 at 17:47
my pleasure - I've been using vim for 2 years now and I still learn something every day. – Ken Oct 24 '08 at 17:52
Thanks - smartindent (as a name) was new to me. I hadn't managed to work out which option did the trick on MacOS X. – Jonathan Leffler Oct 24 '08 at 17:55
Even with those settings applied, if I press ‘o’ in a line indented with spaces, the new line is indented with tabs :-( How can I change this behaviour? – Azat Razetdinov Dec 4 '08 at 9:04
If you have expandtab set then it should be using spaces. Do you also "set compatible"? That has various side effects including resetting expandtab to its default of "off" – Ken Dec 4 '08 at 14:59
vote up 4 vote down

Related, if you open a file that uses both tabs and whitespace, assuming you've got

set expandtab ts=4 sw=4 ai

You can replace all the tabs with whitespace in the entire file with

:%retab
link|flag
vote up 0 vote down

This .vimrc looks somewhat promising: http://www.dotfiles.com/files/9/53_.vimrc

link|flag
vote up 0 vote down

The best way to get filetype-specific indentation is to use ":filetype plugin indent on" in your vimrc. Then you can specify things like ":setl sw=4 sts=4 et" in .vim/ftplugin/c.vim, for example, without having to make those global for all files being edited and other non-C type syntaxes will get indented correctly, too (even lisps).

link|flag
vote up -1 vote down

'set ts=4' in /etc/vimrc if you want to make it global not sure about the auto tab

link|flag
vote up -1 vote down

The auto-indent is based on the current syntax mode. I know that if you are editing Foo.java, then entering a { and hitting Enter indents the following line.

As for tabs, there are two settings. Within vim, type a colon and then "set tabstop=4" which will set the tabs to display as four spaces. Hit colon again and type "set expandtab" which will insert spaces for tabs.

You can put these settings in a .vimrc (or _vimrc on Windows) in your home directory, so you only have to type them once.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.