-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
180 lines (180 loc) · 5.16 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
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
178
179
180
{
"files.associations": {
// HAdashboard
"*.dash": "yaml",
// cuda
"*.cu": "cpp"
},
"files.defaultLanguage": "markdown",
"files.exclude": {
"**/*.pyc": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.rulers": [
80,
120
],
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 5,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": true,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"python.formatting.autopep8Args": [
"--max-line-length",
120
],
"rust.mode": "legacy",
"rust.rustup": {
"toolchain": "stable-x86_64-apple-darwin",
"nightlyToolchain": "nightly-2017-12-21-x86_64-apple-darwin"
},
"gitlens.keymap": "chorded",
"vsnotes.defaultNotePath": "/Users/jroovers/Documents/tmp",
"breadcrumbs.enabled": true,
"python.jediEnabled": false,
"go.formatTool": "goimports",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"go.useLanguageServer": true,
"workbench.iconTheme": "vscode-icons",
"cSpell.enabledLanguageIds": [
"asciidoc",
"c",
"cpp",
"csharp",
"css",
"git-commit",
"go",
"handlebars",
"html",
"jade",
"java",
"javascript",
"javascriptreact",
"json",
"jsonc",
"latex",
"less",
"markdown",
"php",
"plaintext",
"pug",
"python",
"restructuredtext",
"rust",
"scala",
"scss",
"text",
"typescript",
"typescriptreact",
"yaml",
"yml"
],
"vsicons.dontShowNewVersionMessage": true,
"editor.copyWithSyntaxHighlighting": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.value": 5,
"python.languageServer": "Pylance",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"java.home": "/Users/jroovers/Library/Java/JavaVirtualMachines/openjdk-16/Contents/Home",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"redhat.telemetry.enabled": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false,
"yaml": true
},
"python.formatting.provider": "black",
"security.workspace.trust.untrustedFiles": "open",
"diffEditor.renderSideBySide": false,
"githubPullRequests.defaultMergeMethod": "squash",
"git.mergeEditor": true,
"window.commandCenter": true,
"remote.SSH.externalSSH_ASKPASS": true,
"editor.stickyScroll.enabled": true,
"terminal.integrated.shellArgs.linux": [
"-l"
],
"terminal.integrated.scrollback": 10000,
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"githubPullRequests.pullBranch": "never",
"http.proxyStrictSSL": false,
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"hediet.vscode-drawio.resizeImages": null,
"terminal.integrated.defaultProfile.linux": "zsh",
"jupyter.askForKernelRestart": false,
"ruff.importStrategy": "fromEnvironment",
"jupyter.themeMatplotlibPlots": true,
"codeQL.telemetry.enableTelemetry": false,
"terminal.integrated.fontFamily": "Hack Nerd Font Mono",
"black-formatter.args": [
"--line-length=120 "
],
"jupyter.widgetScriptSources": [
"jsdelivr.com",
"unpkg.com"
],
"cSpell.userWords": [
"ADHOCDB",
"areachart",
"dataframe",
"datapoint",
"datapoints",
"jroovers",
"jupysql",
"linechart",
"notna",
"openpyxl",
"oracledb",
"piechart",
"sqlalchemy"
],
"github.copilot.editor.enableAutoCompletions": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.openRepositoryInParentFolders": "never"
}