-
Notifications
You must be signed in to change notification settings - Fork 0
/
gvimrc
51 lines (46 loc) · 867 Bytes
/
gvimrc
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
"main settings
set nocompatible
syntax enable
filetype plugin on
filetype indent on
set hidden
set tabstop=4
set mouse=a
set showbreak=>
set whichwrap+=<,>,[,],h,l
set display+=lastline
set rulerformat=%22(%M%n\ %=%l,%c%V\ %P%)
set selectmode=mouse
set selection=inclusive
set showcmd
set showmatch
set matchtime=8
set shiftwidth=4
set textwidth=0
set scrolloff=2
set winaltkeys=no
set nohls
set ruler
set laststatus=2
set backspace=2
set formatoptions-=c
set formatoptions-=o
set formatoptions+=r
set ignorecase
set incsearch
set autoindent
set smartindent
set bg=dark
set guioptions-=T
set guioptions-=m
colorscheme zenburn
set lines=40
set number
imap <up> <nop>
nmap <up> <nop>
imap <down> <nop>
nmap <down> <nop>
imap <left> <nop>
nmap <left> <nop>
imap <right> <nop>
nmap <right> <nop>