-
Notifications
You must be signed in to change notification settings - Fork 20
/
.vimpagerrc
41 lines (33 loc) · 872 Bytes
/
.vimpagerrc
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
" set the mapleader key
let mapleader = ","
let g:mapleader = ","
" use a better color scheme
colorscheme zellner
" set the default encoding
set enc=utf-8
" set up jj as mode switch
map! jj <ESC>
if has('mouse')
" have the mouse enabled all the time
set mouse=a
" make a menu popup on right click
set mousemodel=popup
endif
" tell the bell to go beep itself!
set visualbell t_vb=
" This setting will cause the cursor to very briefly jump to a
" brace/parenthese/bracket's "match" whenever you type a closing or
" opening brace/parenthese/bracket.
set showmatch
" Set a margin of lines when scrolling
set scrolloff=4
" lines to scroll when cursor leaves screen
set scrolljump=5
" find as you type
set incsearch
" highlight the terms
set hlsearch
" make searches case-insensitive
set ignorecase
" unless they contain upper-case letters
set smartcase