-
Notifications
You must be signed in to change notification settings - Fork 1
/
Health.code-workspace
35 lines (35 loc) · 1.03 KB
/
Health.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#ef6065",
"titleBar.activeForeground": "#ffffff",
"titleBar.inactiveBackground": "#f0484e",
"titleBar.inactiveForeground": "#cccccc"
},
"editor.formatOnSave": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
".flatpak/**": true,
"_build/**": true
},
"rust-analyzer.runnables.extraArgs": [
"--target-dir=_build/src"
],
"mesonbuild.configureOnOpen": false,
"mesonbuild.buildFolder": "_build",
"mesonbuild.mesonPath": "/home/rasmus/Projects/Health/.flatpak/meson.sh",
"rust-analyzer.server.path": "/home/rasmus/Projects/Health/.flatpak/rust-analyzer.sh",
"rust-analyzer.runnables.command": "/home/rasmus/Projects/Health/.flatpak/cargo.sh",
"rust-analyzer.files.excludeDirs": [
".flatpak"
]
}
}