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