about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/editors/code/walkthrough-setup-tips.md
blob: aabe0dd662bd42dc359b2de09ffd5d6f1d987f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Settings Example

Add the following to settings.json to mark Rust library sources as read-only:

```json
"files.readonlyInclude": {
  "**/.cargo/registry/src/**/*.rs": true,
  "**/.cargo/git/checkouts/**/*.rs": true,
  "**/lib/rustlib/src/rust/library/**/*.rs": true,
},
```