1"
2" Per-project .vimrc file: Configures Vim per Xastir project standards.
3"
4" Add these two files to the end of your ~/.vimrc file:
5"
6"   set exrc
7"   set secure
8"
9
10
11" Set compatibility to Vim only
12set nocompatible
13
14" Turn on syntax highlighting
15syntax on
16
17" Tab equals 2 columns
18set tabstop=2
19set softtabstop=2
20
21" Insert spaces instead of tab characters
22set expandtab
23
24" Control how many columns text is indented with the reindent
25" operations (<< and >>) and automatic C-style indentation.
26set shiftwidth=2
27
28" When off, a <Tab> always inserts blanks according to 'tabstop' or
29" 'softtabstop'.  'shiftwidth' is only used for shifting text left or
30" right |shift-left-right|.
31set nosmarttab
32
33" Display different types of white spaces.
34"set list
35"set listchars=tab:#\ ,trail:#,extends:#,nbsp:.
36
37
38