-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvscode.jsonc
90 lines (90 loc) · 2.24 KB
/
vscode.jsonc
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
// notes: command shift P, search for "Preferences: Open settings (JSON)"
{
"vim.leader": "<Space>",
"vim.insertModeKeyBindingsNonRecursive": [
],
"vim.normalModeKeyBindingsNonRecursive": [
// https://code.visualstudio.com/docs/getstarted/keybindings
// TODO: find definitive version
{
"before": ["<leader>", "q", "q"],
"commands": ["workbench.action.closeWindow"]
},
{
"before": ["<leader>", "w", "c"],
"commands": ["workbench.action.closeEditorsInGroup"]
},
{
"before": ["<leader>", "w", "v"],
"commands": ["workbench.action.splitEditor"]
},
{
"before": ["<leader>", "f", "s"],
"commands": ["workbench.action.files.save"]
},
{
"before": ["<leader>", "e", "n"],
"commands": ["editor.action.marker.nextInFiles"]
},
{
"before": ["<leader>", "e", "p"],
"commands": ["editor.action.marker.prevInFiles"]
},
// {
// "before": ["<leader>", "b", "b"],
// "commands": ["workbench.action.navigateEditorGroups"]
// },
{
"before": ["<leader>", "b", "d"],
"commands": ["workbench.action.closeActiveEditor"]
},
{
"before": ["<leader>", "b", "n"],
"commands": ["workbench.action.nextEditor"]
},
{
"before": ["<leader>", "b", "p"],
"commands": ["workbench.action.previousEditor"]
},
{
"before": ["<C-c>"],
"commands": ["editor.action.clipboardCopyAction"]
},
{
"before": ["g", "o"],
"commands": ["workbench.action.quickOpen"]
},
{
"before": ["<C-h>"],
"after": ["<C-w>", "h"]
},
{
"before": ["<C-j>"],
"after": ["<C-w>", "j"]
},
{
"before": ["<C-k>"],
"after": ["<C-w>", "k"]
},
{
"before": ["<C-l>"],
"after": ["<C-w>", "l"]
},
{
"before": ["<leader>", "r", "l"], "after": [],
"commands": [ {"command": "runInTerminal.run", "args": {"name": "l"}} ]
},
],
"editor.tabSize": 4,
"editor.cursorStyle": "line",
"editor.insertSpaces": true,
"editor.lineNumbers": "on",
"editor.wordWrap": "off",
"github.copilot.advanced": {
"debug.forceUseEarhartModel": true,
"secret_key": "REDACTED"
},
"copilot.enabled": {
"python": false
},
}