30 lines
1.1 KiB
JSON
30 lines
1.1 KiB
JSON
{
|
|
"editor.minimap.enabled": false,
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
},
|
|
"[rust]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"lldb.displayFormat": "auto",
|
|
"lldb.showDisassembly": "auto",
|
|
"lldb.dereferencePointers": true,
|
|
"lldb.consoleMode": "commands",
|
|
"lldb.launch.initCommands": [
|
|
"settings set target.x86-disassembly-flavor intel"
|
|
],
|
|
"rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": false,
|
|
"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "always",
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
|
"rust-analyzer.imports.prefix": "plain",
|
|
"rust-analyzer.diagnostics.experimental.enable": true,
|
|
"rust-analyzer.procMacro.attributes.enable": false,
|
|
"rust-analyzer.inlayHints.closureReturnTypeHints.enable": true,
|
|
"rust-analyzer.inlayHints.reborrowHints.enable": true,
|
|
// "rust-analyzer.procMacro.enable": false,
|
|
// "rust-analyzer.diagnostics.disabled": ["unresolved-macro-call"],
|
|
// "rust-analyzer.procMacro.ignored": {
|
|
// "build-info": ["format"],
|
|
// }
|
|
}
|