In addition to rangerchris's answer, you might consider using modelines. Modelines tell the editor how to configure itself:
#!/usr/bin/perl
# vi: ts=4 sw=4 ht=4 et textwidth=76 :
use strict;
use warnings;
print "hello world\n";
That modeline tells vi to use 4 character tabs and autoindents, to use spaces instead of tabs, and that it should insert a newline when the cursor gets to 76 characters.
You can control how Vim reads modelines with two variables (most likely set in your .vimrc):
set modeline
set modelines=5
The modeline variable tells Vim to look for modelines if it is set. The modelines variable tells Vim how many lines from the top and bottom to scan looking for the modeline (in this case it will find the modeline if it is in the first or last five lines of the file).
Like any system that takes instructions from untrusted sources, modelines can be a security threat, so the root user should never use modelines and you should keep your copy of Vim up-to-date.
The real benefit to modelines is that they are per file. Most Perl people are four spaces as indent people, but I am an eight character tab person. When working with other people's code, I use a modeline that reflects their usage. The rest of the time I use my own.