-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vromerc
43 lines (31 loc) · 1.77 KB
/
.vromerc
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
" Rule for next/prev page. (Should written in RegExp)
set nextpattern+=^NextPage|››$
set previouspattern+=^PrevPage|‹‹$
" set no status line -- i.e keys don't show as you type. enabled by default
set showstatus=0
" Change external editor, default is GVim
set editor=gvim -f
" Disable Vrome in those sites, Multiple URLs can be separated with ','
set disablesites=mail.google.com, reader.google.com, c9.io
" Define search engines. the value should be valid json looks like below.
" Please remember the first searchengine is the default one. in the below one, it is google
set searchengines={"google":"http://www.google.com/search?q={{keyword}}"}
set searchengines+={"wikipedia":"http://en.wikipedia.org/wiki/{{keyword}}"}
" Disable autocomplete
set noautocomplete
" Change enable vrome keybinding, default is <C-Esc>
set enable_vrome_key=<Esc>
" The server port is what external server running on
" The external server is used to support launch the external editor in insert mode.
" Please refer "Support External Editor" https://github.com/jinzhu/vrome/wiki/Support-External-Editor for more
" set server_port=30000
" Set your hintkeys instead of the default 0123456789
" set hintkeys=jlkhfsdagwerui
" Alternative: creates two sets of hint keys separated by a semicolon. First set uses keys close to the home row to create combinations, second set is used as a last resort
" Note: this trigger the smart sorting in multi mode. Matching elements by level of similarity
"set hintkeys=dsafrewq,tgcx
" overwrites the sub actions by your own set of actions
"set hint_actions={"`": "[", ",": "{"}
" by default, hints use numbers. You can have both numbers AND strings (view custom JS below). Or you can use strings only as hints and overwrite the number commands
set useletters=1
" vim: set ft=vim: