-
Notifications
You must be signed in to change notification settings - Fork 8
/
MyVsCodeSettings.txt
38 lines (38 loc) · 1.27 KB
/
MyVsCodeSettings.txt
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
{
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"extensions.confirmedUriHandlerExtensionIds": [
"Autodesk.autolispext"
],
"git.openRepositoryInParentFolders": "never",
"workbench.colorTheme": "Visual Studio Dark",
"terminal.integrated.tabStopWidth": 4,
"security.workspace.trust.untrustedFiles": "open",
"editor.wordWrapColumn": 119,
"editor.wordWrap": "wordWrapColumn",
"autolispext.format.MaxLineChars": 120,
"launch": {
"configurations": [
{
"name": "Remote Attach",
"type": "debugpy",
"request": "attach",
"connect": { "host": "127.0.0.1", "port": 5678 },
"justMyCode": false
}
],
"compounds": []
},
"editor.fontSize": 12,
"debug.allowBreakpointsEverywhere": true,
"window.zoomLevel": 1,
"cmake.showOptionsMovedNotification": false,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": false,
"python.analysis.inlayHints.functionReturnTypes": true,
"editor.fontFamily": "Cascadia Code Light",
"editor.fontLigatures": true,
"editor.fontVariations": false,
}