blob: cab106b253e176ec38c9ffcf13b81e390c5b7631 (
plain)
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
|
set number
set smartcase
set ignorecase
set nowrap
set tabpagemax=15
set tabstop=2
set shiftwidth=2
set expandtab
set scrolloff=2
set showmatch
set showmode
set title
set wildmenu
set wildignore=*.o,*.swp,*~
set matchtime=2
set mouse=v
map <F12> :make <CR>
map <F3> :cn <CR>
map <S-F3> :cp <CR>
map <tab> :tabn <CR>
map <S-tab> :tabp <CR>
map <C-w> :w <CR>
map <C-x> :wq
syntax enable
noremap ; l
noremap l k
noremap k j
noremap j h
set background=dark
filetype plugin on
set ofu=syntaxcomplete#Complete
map <S-y> :w !diff % - <CR>
|