forked from dsriseah/ursys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sri-ursys.code-workspace
104 lines (104 loc) · 2.83 KB
/
sri-ursys.code-workspace
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
{
// enable whitespace rendering by default
"folders": [
{
"path": "."
}
],
"settings": {
// configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true
},
"search.exclude": {
"**/node_modules": true,
"**/package-lock.json": true
},
// highlight sri-style ursys module comment separators
"highlight.regexes": {
"(/// [^/]+? ///+)\n": [
{
"color": "#a3bdff",
"backgroundColor": "#2E4AE06f"
}
]
},
// make errors more obvious, de-emphasize warnings
"workbench.colorCustomizations": {
"editorError.border": "#ff0000"
},
// other theme overrides
"editor.tokenColorCustomizations": {},
// langauge specific overrides
"[javascript]": {
"editor.renderWhitespace": "all",
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[javascriptreact]": {
"editor.renderWhitespace": "all",
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[typescript]": {
"editor.renderWhitespace": "all",
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.renderWhitespace": "all",
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"terminal.integrated.profiles.osx": {
"x86 macos": {
"path": "/usr/bin/arch",
"args": [
"-arch",
"x86_64",
"${env:SHELL}",
"-i",
"-c",
"export VSCODE_TERM='x86 shell';source ${workspaceFolder}/.vscode/vs_env; exec ${env:SHELL}"
]
},
"arm64 macos": {
"path": "/usr/bin/arch",
"args": [
"-arch",
"arm64",
"${env:SHELL}",
"-i",
"-c",
"export VSCODE_TERM='arm64 shell'; cd ${workspaceFolder}; source .vscode/vs_env; exec ${env:SHELL}"
]
},
"generic macos": {
"path": "${env:SHELL}",
"args": [
"-i",
"-c",
"export VSCODE_TERM='generic bash'; cd ${workspaceFolder}; source .vscode/vs_env; exec ${env:SHELL}"
]
}
},
"terminal.integrated.profiles.linux": {
"generic bash": {
"path": "/bin/bash",
"args": [
"-i",
"-c",
"export VSCODE_TERM='generic bash'; cd ${workspaceFolder}; source .vscode/vs_env; exec ${env:SHELL}"
]
}
},
// this line will force use of the selected profile
// use "x86 macos" to force Rosetta x86 emulation in terminal
"terminal.integrated.defaultProfile.osx": "generic macos",
"terminal.integrated.defaultProfile.linux": "generic bash"
}
}