blob: 2b78b0eb4023e34b0c2833bb83615bae4913d8df (
plain) (
blame)
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
36
37
38
39
|
" Enable ruler (will display line number and column number by default).
set ruler
" Enable syntax highlight.
syntax on
" Expand tabs to spaces.
set expandtab
" Use four-space indentation by default.
set tabstop=4
set softtabstop=4
set shiftwidth=4
" Limit text width.
set textwidth=79
" In Makefiles, don't expand tabs to spaces, since we need the actual tabs.
autocmd FileType make setlocal noexpandtab
" Use two-space indentation for yaml files.
autocmd FileType yaml setlocal tabstop=2
autocmd FileType yaml setlocal softtabstop=2
autocmd FileType yaml setlocal shiftwidth=2
" Limit width to 72 columns for git commit messages.
autocmd FileType gitcommit setlocal textwidth=72
" And mail messages as well.
autocmd FileType mail setlocal textwidth=72
" Disable incremental search.
set noincsearch
" Disable highlighting of the search results.
set nohlsearch
" Disable incremental search.
set noincsearch
|