-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-settings.json
177 lines (177 loc) · 6.99 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 100,
"editor.rulers": [
80,
100
],
"vim.useSystemClipboard": true,
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{"before": ["<leader>", "f", "s"], "commands": [":w"]},
{"before": ["<leader>", "f", "f"], "commands": ["extension.advancedNewFile"]},
{"before": ["<leader>", "f", "r"], "commands": ["fileutils.renameFile"]},
{"before": ["<leader>", "f", "g"], "commands": ["copyRelativeFilePath"]},
{"before": ["<leader>", "f", "e"], "commands": ["workbench.view.explorer"]},
{"before": ["<leader>", "s", "l"], "commands": ["workbench.action.focusNextGroup"]},
{"before": ["<leader>", "s", "h"], "commands": ["workbench.action.focusPreviousGroup"]},
{"before": ["<leader>", "s", "L"], "commands": ["workbench.action.moveEditorToNextGroup"]},
{"before": ["<leader>", "s", "H"], "commands": ["workbench.action.moveEditorToPreviousGroup"]},
{"before": ["<leader>", "w", "l"], "commands": ["workbench.action.nextEditorInGroup"]},
{"before": ["<leader>", "w", "h"], "commands": ["workbench.action.previousEditorInGroup"]},
{"before": ["<leader>", "w", "L"], "commands": ["workbench.action.moveEditorRightInGroup"]},
{"before": ["<leader>", "w", "H"], "commands": ["workbench.action.moveEditorLeftInGroup"]},
{"before": ["<leader>", "b", "o"], "commands": ["workbench.action.keepEditor"]},
{"before": ["<leader>", "b", "u"], "commands": ["workbench.action.reopenClosedEditor"]},
{"before": ["<leader>", "v", "0"], "commands": ["workbench.action.zoomReset"]},
{"before": ["<leader>", "g", "g"], "commands": ["editor.action.revealDefinition"]},
{"before": ["<leader>", "g", "r"], "commands": ["editor.action.goToReferences"]},
{"before": ["<leader>", "g", "n"], "commands": ["merge-conflict.next"]},
{"before": ["<leader>", "g", "i"], "commands": ["merge-conflict.accept.incoming"]},
{"before": ["<leader>", "g", "b"], "commands": ["merge-conflict.accept.both"]},
{"before": ["<leader>", "g", "c"], "commands": ["merge-conflict.accept.current"]},
{"before": ["<leader>", "c", "l"], "commands": ["editor.action.commentLine"]},
{"before": ["<leader>", "c", "w"], "commands": ["rewrap.rewrapComment"]},
{"before": ["<leader>", "p", "f"], "commands": ["workbench.action.quickOpen"]},
{"before": ["<leader>", "p", "g"], "commands": ["workbench.action.findInFiles"]},
{"before": ["<leader>", "m", "k"], "commands": ["editor.action.insertCursorAbove"]},
{"before": ["<leader>", "m", "j"], "commands": ["editor.action.insertCursorBelow"]},
{"before": ["<leader>", "m", "d"], "commands": ["editor.action.addSelectionToNextFindMatch"]},
{"before": ["<leader>", "l", "s"], "commands": ["workbench.action.editor.changeLanguageMode"]},
{
"before": ["<leader>", "l", "f"],
"commands": ["editor.action.formatDocument"],
"when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
},
{"before": ["<leader>", "e", "e"], "commands": ["editor.action.showHover"]},
{"before": ["<leader>", "e", "n"], "commands": ["editor.action.marker.next"]},
{"before": ["<leader>", "r", "r"], "commands": ["rust-analyzer.run"], "when": "inRustProject"},
{"before": ["<leader>", "r", "p"], "commands": ["workbench.action.showCommands"]},
{"before": ["<leader>", "t", "t"], "commands": ["io.orta.jest.editor.run-all-tests"]},
{"before": ["Y"], "after": ["y", "$"]}
],
"vim.visualModeKeyBindingsNonRecursive": [
{"before": ["<leader>", "c", "l"], "commands": ["editor.action.commentLine"]},
{"before": ["<leader>", "c", "b"], "commands": ["editor.action.blockComment"]},
{"before": ["<leader>", "m", "d"], "commands": ["editor.action.addSelectionToNextFindMatch"]},
{"before": [">"], "commands": ["editor.action.indentLines"]},
{"before": ["<"], "commands": ["editor.action.outdentLines"]},
{"before": ["<leader>", "l", "l"], "commands": ["turboConsoleLog.displayLogMessage"]}
],
"search.useGlobalIgnoreFiles": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"extensions.ignoreRecommendations": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.statusBar.enabled": false,
"colorize.languages": [
"css",
"sass",
"scss",
"less",
"postcss",
"sss",
"stylus",
"xml",
"svg",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
"todohighlight.include": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"**/*.rs",
"**/*.py",
"**/*.md"
],
"todohighlight.keywords": [
"TODO;",
{
"text": "TODO:",
"fontWeight": "none",
"color": "none",
"backgroundColor": "none"
}, {
"text": "FIXME:",
"fontWeight": "none",
"color": "none",
"backgroundColor": "none"
}
],
"todohighlight.defaultStyle": {
"fontWeight": "bold",
"color": "none",
"backgroundColor": "none"
},
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.runnableEnv": [
{
"mask": "^test",
"env": {
"RUST_BACKTRACE": 0
}
}
],
"todohighlight.isEnable": true,
"[rust]": {
"editor.defaultFormatter": "matklad.rust-analyzer",
"editor.formatOnSave": true
},
"workbench.preferredLightColorTheme": "Ayu Light",
"editor.cursorBlinking": "solid",
"python.pythonPath": "/Users/jpaddison/.venv/py38/bin/python",
"rust-analyzer.checkOnSave.overrideCommand": null,
"rust-analyzer.inlayHints.enable": true,
"explorer.confirmDelete": false,
"editor.lineNumbers": "relative",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.autoDetectColorScheme": true,
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"turboConsoleLog.quote": "'",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"python.showStartPage": false,
"docker.showStartPage": false,
"workbench.editor.untitled.hint": "hidden",
"codestream.email": "johnpaddison@gmail.com",
"redhat.telemetry.enabled": false,
"python.defaultInterpreterPath": "/Users/jpaddison/.venv/py38/bin/python",
"editor.inlineSuggest.enabled": true,
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"workbench.editor.languageDetection": false,
"jest.autoRun": "off",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": true
},
"workbench.colorTheme": "Ayu Light"
}