forked from vimoutliner/vimoutliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimoutlinerrc
40 lines (31 loc) · 1.46 KB
/
vimoutlinerrc
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
"Extra mappings *****************************************************
"This mapping is fold-level and fold-state dependent
"map <S-Down> dd p
"map <S-Up> dd <up>P
"Common Plugins
" This variable holds name of all VO modules you want to load. Do NOT use ru
" directly in this file, because you will get into many strange surprises. If
" you do not want to load any VO modules leave it blank (default).
" This setting loads the checkboxes, tags and smart_paste plugins as default.
let g:vo_modules_load = "checkbox:tags:smart_paste"
" Uncomment the following line to enable the math plugin.
"let g:vo_modules_load .= ':math'
" Uncomment the following line to enable new hoisting.
let g:vo_modules_load .= ':newhoist'
" Uncomment the following line to enable the format plugin.
"let g:vo_modules_load .= ':format'
" Uncomment the following line to enable clocking.
"let g:vo_modules_load .= ':clock'
"User Preferences ***************************************************
"let maplocalleader = ",," " this is prepended to VO key mappings
"setlocal ignorecase " searches ignore case
"setlocal smartcase " searches use smart case
"setlocal wrapmargin=5
"setlocal tw=78
"setlocal tabstop=4 " tabstop and shiftwidth must match
"setlocal shiftwidth=4 " values from 2 to 8 work well
"setlocal background=dark " for dark backgrounds
setlocal nowrap
"Hoisting ***********************************************************
"Uncomment and set to 1 to debug hoisting
"let g:hoistParanoia=0