-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
62 lines (62 loc) · 1.43 KB
/
vscode-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
{
"editor.minimap.enabled": false,
"[python]": {
"editor.formatOnType": true
},
"workbench.colorCustomizations": {},
"vim.hlsearch": true,
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["\\", "n"],
"commands": [ { "command": ":nohl" } ]
},
{
"before": ["<space>", "w"],
"commands": [ { "command": ":w" } ]
},
{
"before": ["<space>", "q"],
"commands": [ { "command": ":q" } ]
},
{
"before": ["<space>", "g"],
"after": ["v","i","w"],
"commands": [ { "command": "workbench.action.findInFiles" } ]
},
{
"before": ["<space>", "G"],
"after": ["v","i","W"],
"commands": [ { "command": "workbench.action.findInFiles" } ]
},
{
"before": ["<space>", "o"],
"commands": [ { "command": "workbench.action.quickOpen" } ]
},
{
"before": ["<space>", "n"],
"commands": [ { "command": "workbench.explorer.fileView.focus" } ]
},
{
"before": ["<space>", "N"],
"commands": [ { "command": "workbench.explorer.fileView.focus" } ]
},
{
"before": ["<C-h>"],
"after": ["<C-w>", "<C-h>"]
},
{
"before": ["<C-j>"],
"after": ["<C-w>", "<C-j>"]
},
{
"before": ["<C-k>"],
"after": ["<C-w>", "<C-k>"]
},
{
"before": ["<C-l>"],
"after": ["<C-w>", "<C-l>"]
}
],
"window.zoomLevel": -1
}