Last active
March 3, 2022 22:57
-
-
Save Xithrius/82b8ca325967d4c3832ccbbda67042e4 to your computer and use it in GitHub Desktop.
My Visual Studio Code settings.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"editor.suggestSelection": "first", | |
"editor.fontFamily": "Fira Code", | |
"editor.cursorBlinking": "expand", | |
"editor.tabCompletion": "on", | |
"editor.autoClosingQuotes": "always", | |
"editor.autoClosingBrackets": "always", | |
"editor.cursorStyle": "line-thin", | |
"editor.minimap.renderCharacters": false, | |
"editor.smoothScrolling": true, | |
"editor.renderLineHighlight": "all", | |
"editor.showFoldingControls": "always", | |
"editor.stickyTabStops": true, | |
"editor.find.autoFindInSelection": "multiline", | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"files.watcherExclude": { | |
"**/Cargo.lock**": true, | |
"**/oprofile_data/**": true, | |
"**/target/**": true | |
}, | |
"rust-analyzer.diagnostics.enable": true, | |
"rust-analyzer.inlayHints.chainingHints": true, | |
"rust-analyzer.inlayHints.parameterHints": true, | |
"rust-analyzer.inlayHints.smallerHints": true, | |
"rust-analyzer.inlayHints.typeHints": true, | |
"rust-analyzer.checkOnSave.command": "clippy", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "One Dark Pro Flat", | |
"workbench.editor.wrapTabs": true, | |
"debug.allowBreakpointsEverywhere": true, | |
"debug.showBreakpointsInOverviewRuler": true, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"atomKeymap.promptV3Features": true, | |
"oneDarkPro.vivid": true, | |
"files.autoSave": "afterDelay", | |
"editor.renderWhitespace": "none", | |
"editor.bracketPairColorization.enabled": true, | |
"rust-analyzer.inlayHints.enable": true, | |
"editor.defaultFormatter": "xaver.clang-format", | |
"C_Cpp.clang_format_fallbackStyle": "file", | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.startupEditor": "none", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.sideBar.location": "right", | |
"window.menuBarVisibility": "toggle" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment