blob: 6054b1c36321fe453b2ed5b301ae64f9e3f5e2bf (
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
|
set ts=4
set sw=4
set expandtab
set sts=4
autocmd FileType make setlocal noexpandtab
" Mini tabs, small "m":
map \m <Esc>:set expandtab ts=2 sw=2 sts=2<CR>
" Think "little tabs" and "big tabs":
map \t <Esc>:set expandtab ts=4 sw=4 sts=4<CR>
map \T <Esc>:set expandtab ts=8 sw=8 sts=4<CR>
set hlsearch
syntax on
set bg=dark
set mouse=a
set number
set smartindent
set term=xterm-256color
set cursorline
hi CursorLine cterm=bold ctermbg=0
|