-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
executable file
·71 lines (67 loc) · 1.67 KB
/
settings.json
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
{
"window.zoomLevel": 2,
"editor.minimap.renderCharacters": false,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": false,
"vim.hlsearch": true,
"vim.sneak": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["J"],
"after": ["g", "J"]
},
{
"before": ["0"],
"after": ["0", "w"]
},
// {
// "before": ["K"],
// "after": ["3", "k"]
// },
// {
// "before": ["W"],
// "after": ["3", "w"]
// },
// {
// "before": ["B"],
// "after": ["3", "b"]
// }
],
"vim.visualModeKeyBindings": [
{
"before": ["<C-c>"],
"after": ["y"]
},
{
"before": ["<C-v>"],
"after": ["p"]
}
],
"vim.insertModeKeyBindings": [
{
"before": ["<C-v>"],
"after": [],
"commands": "editor.action.clipboardPasteAction",
}
],
// "vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"html.mirrorCursorOnMatchingTag":false,
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"window.titleBarStyle": "native",
"vetur.validation.template": false,
"workbench.colorTheme": "Solarized Dark",
"gitlens.blame.avatars": false,
"gitlens.hovers.avatars": false,
"gitlens.views.compare.avatars": false,
"gitlens.views.fileHistory.avatars": false,
"gitlens.views.lineHistory.avatars": false,
"gitlens.views.repositories.avatars": false,
"gitlens.views.search.avatars": false,
"workbench.iconTheme": "material-icon-theme"
}