-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpreinit_sample.vim
28 lines (27 loc) · 1003 Bytes
/
preinit_sample.vim
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
" Please copy this file to 'preinit.vim' to enable it.
let g:lin_nvim_builtin_constants = {
\ 'diagnostic': {
\ 'signs': {
\ 'error': '',
\ 'warning': '',
\ 'info': '',
\ 'hint': '',
\ 'ok': '',
\ },
\ },
\ 'window': {
\ 'border': 'rounded',
\ 'blend': 15,
\ 'layout': {
\ 'middle': { 'scale': 0.85 },
\ 'large': { 'scale': 0.9 },
\ 'sidebar': { 'scale': 0.2, 'min': 20, 'max': 60 },
\ 'input': { 'scale': 0.3, 'min': 30, 'max': 60 },
\ 'select': { 'scale': 0.5, 'min': 40, 'max': 100 },
\ 'cmdline': { 'scale': 0.5, 'min': 40, 'max': 100 },
\ },
\ },
\ 'perf': {
\ 'maxfilesize': 1024 * 1024 * 2,
\ },
\ }