blob: 9e3afc23d315b83e7afc3d7057335fc8f0a661e8 (
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
|
" 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.
set tabstop=4
set softtabstop=4
set shiftwidth=4
" Limit text width.
set textwidth=79
" Disable incremental search.
set noincsearch
" Disable highlighting of the search results.
set nohlsearch
" Disable incremental search.
set noincsearch
|