15

If I wanted to have traditional indentation in vi / vim, I would enter these commands:

:set tabstop=4
:set shiftwidth=4
:set expandtab

It is tedious to type those commands every time I open a file. How do I permanently store those settings?

JoJo
  • 253

3 Answers3

17

Create a file in your home directory called .vimrc, and put your commands in there:

set tabstop=4
set shiftwidth=4
set expandtab

Ubuntu's Vim Howto has a few pointers to basic customisation, if you want to dig deeper there's the Vim Book and the FAQ as well.

vi-improved.org also has a nice, big example of one person's .vimrc for you to rummage around in.

4

Store

set tabstop=4
set shiftwidth=4
set expandtab

or

set ts=4 sw=4 
set expandtab

In your ~/.vimrc file. E.G. /home/user/.vimrc or /home/$(whoami)/.vimrc. You can use your other settings in .vimrc as well, the ones you regularly use, for example syntax on if you use the full version of VIM.

sagarchalise
  • 23,988
0

Once you open the terminal in \home\user\exampleuser\, (the default directory), create the file .vimrc. If you really like vim, you can type vim .vimrc into the command line, or you can use nano. This file will control vim. Then type your code you want to set here like this: set expandtab (notice no colons (:)) Then, save the file and you're done!