-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimiumrc
More file actions
96 lines (84 loc) · 1.79 KB
/
vimiumrc
File metadata and controls
96 lines (84 loc) · 1.79 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
" Mappings
unmap b
unmap x
map <A-x> togglePinTab
map x togglePinTab
map <a-t> LinkHints.activateModeToOpenInNewForegroundTab
map w removeTab
map $ closeTabsOnRight
map <c-j> previousTab
map <c-k> nextTab
map <c-h> goBack
map <c-l> goForward
" Match to vim more closely; muscle memory
unmap d
unmap u
map <c-d> scrollPageDown
map <c-u> scrollPageUp
" CSS for Link Hints
div > .vimiumHintMarker {
/* linkhint boxes */
background: rgba(236, 255, 250, 0.9);
border: none;
border-radius: 0;
padding: 5px;
box-shadow: none;
transition: opacity 0.2;
}
div > .vimiumHintMarker span {
/* linkhint text */
color: black;
font-weight: normal;
font-size: 12px;
font-family: 'Monaco', monospace;
}
" exclusion rules
" export
" 1) localStorage.getItem('exclusionRules')
" 2) echo '__exclusion_rules__' | python -mjson.tool | pbcopy
" 3) paste below
" import
" 1) copy below
" 2) localStorage.setItem('exclusionRules', '__exclusion_rules__');
[
{
"passKeys": "wx/jk` gi",
"pattern": "http*://mail.google.com/*"
},
{
"passKeys": "zxcv",
"pattern": "http*://smbc-comics.com/*"
},
{
"passKeys": "jkl",
"pattern": "https://www.tumblr.com/*"
},
{
"passKeys": "",
"pattern": "http*://drive.google.com/*"
},
{
"passKeys": "jJkK",
"pattern": "http*://*.myshopify.com/*"
},
{
"passKeys": "jk?du",
"pattern": "http*://*.quora.com/*"
},
{
"passKeys": "jkazx[]",
"pattern": "http*://*.reddit.com/*"
},
{
"passKeys": "jk",
"pattern": "http*://twitter.com/*"
},
{
"passKeys": "",
"pattern": "http://vim-adventures.com/*"
},
{
"passKeys": "",
"pattern": "http*://inbox.google.com/*"
}
]