-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
51 lines (36 loc) · 1.27 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"
" basic ~/.vimrc
"
version 8.0
autocmd!
set nocompatible magic mls=0 nomodeline report=100 showmode
set laststatus=2 autowrite bs=2 ai nobackup
set viminfo=!,'20,\"50
set history=50 ruler expandtab tabstop=4 shiftwidth=4 formatoptions=tcrq
set comments=n:>,n:%,n:\|,n://
set nowrap nodigraph noerrorbells visualbell incsearch
set nospell showmatch nohls matchtime=2 nostartofline
set suffixes=~,.dvi,.tar,.bak,.gz,.tgz,.swp,.ps,.Z,.log,.aux,.bbl,.blg,.ent,.rtf
set wildmenu
let loaded_matchparen = 1
filetype plugin indent on
filetype plugin on
autocmd BufRead,BufNewFile .vimrc.* set ft=vim
autocmd BufRead,BufNewFile *.cf set ft=cf3 foldlevel=99
autocmd BufRead,BufNewFile /etc/bind/named* set ft=named
set statusline=%<%F%y%r%m%=[%l,%c%V]\ [%P\ of\ %L]\
map _ gqip
map <F7> :set invnumber<CR>
map <F8> :set invhls<CR>
map n nzz
map N Nzz
map <Space> <C-W><C-W>
set background=light
colorscheme delek
"hi SpellBad ctermfg=DarkRed ctermbg=Grey
"hi SpellCap ctermfg=DarkBlue ctermbg=Grey
":if $TERM == "rxvt"
" hi Statement ctermfg=DarkRed
" hi search cterm=underline ctermfg=Black ctermbg=Brown
":endif
syntax enable