mod-manager/.vscode/settings.json

21 lines
687 B
JSON
Raw Normal View History

2023-12-18 12:34:10 +00:00
{
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
".flatpak/**": true,
"_build/**": true
},
"rust-analyzer.server.path": "${workspaceFolder}/.flatpak/rust-analyzer.sh",
"rust-analyzer.runnables.command": "${workspaceFolder}/.flatpak/cargo.sh",
"rust-analyzer.files.excludeDirs": [
".flatpak"
2023-12-18 22:59:57 +00:00
],
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
],
"mesonbuild.configureOnOpen": false,
"mesonbuild.buildFolder": "_build",
"mesonbuild.mesonPath": "${workspaceFolder}/.flatpak/meson.sh"
2023-12-18 12:34:10 +00:00
}