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