Visual Studio Code configuration
This is my Visual Studio Code configuration:
{
"C_Cpp.autoAddFileAssociations": false,
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"cmake.configureOnOpen": false,
"csharp.suppressDotnetInstallWarning": true,
"debug.allowBreakpointsEverywhere": true,
"debug.console.fontSize": 12,
"debug.toolBarLocation": "docked",
"editor.bracketPairColorization.enabled": true,
"editor.fontLigatures": "'zero' on 'ccmp' off",
"editor.fontSize": 12,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": true,
"editor.minimap.showSlider": "always",
"editor.renderWhitespace": "all",
"editor.rulers": [
120
],
"evenBetterToml.formatter.allowedBlankLines": 1,
"evenBetterToml.formatter.reorderKeys": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"gitlens.blame.format": "${author|20}",
"git.ignoreLimitWarning": true,
"html.format.extraLiners": "",
"html.format.indentInnerHtml": true,
"rust-analyzer.assist.importEnforceGranularity": true,
"rust-analyzer.assist.importGroup": false,
"rust-analyzer.assist.importGranularity": "module",
"rust-analyzer.assist.importPrefix": "crate",
"rust-analyzer.cargo.allFeatures": true,
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.debug.sourceFileMap": "auto",
"security.workspace.trust.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.allowChords": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.scrollback": 10000,
"update.showReleaseNotes": false,
"workbench.editor.untitled.hint": "hidden",
"workbench.iconTheme": "vs-nomo-dark",
"workbench.settings.editor": "json",
"workbench.startupEditor": "newUntitledFile"
}