-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrapharch.code-workspace
34 lines (34 loc) · 1.16 KB
/
grapharch.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"CodeGPT.apiKey": "CodeGPT Plus Beta",
"editor.formatOnSave": true,
"evenBetterToml.taplo.bundled": true,
"git-graph.repository.commits.fetchAvatars": true,
"git-graph.repository.commits.showSignatureStatus": true,
"git-graph.repository.sign.commits": true,
"git.autofetch": "all",
"git.enableCommitSigning": true,
"git.pullBeforeCheckout": true,
"github.gitProtocol": "ssh",
"rust-analyzer.assist.emitMustUse": true,
"rust-analyzer.check.command": "clippy",
"rust-analyzer.diagnostics.styleLints.enable": true,
"rust-analyzer.hover.actions.references.enable": true,
"rust-analyzer.imports.granularity.enforce": true,
"rust-analyzer.inlayHints.closureStyle": "impl_fn",
"rust-analyzer.lens.references.adt.enable": true,
"rust-analyzer.lens.references.enumVariant.enable": true,
"rust-analyzer.lens.references.method.enable": true,
"rust-analyzer.lens.references.trait.enable": true,
"rust-analyzer.restartServerOnConfigChange": true,
"rust-analyzer.testExplorer": true,
"[rust]": {
"editor.formatOnSave": true
}
}
}