Created
August 8, 2022 03:48
-
-
Save jeremychone/96ebd59149bd287817c97b888c665353 to your computer and use it in GitHub Desktop.
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
Show hidden characters
{ | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
}, | |
"workbench.activityBar.visible": false, | |
// "editor.glyphMargin": false, | |
"editor.suggest.showIcons": false, | |
"editor.lightbulb.enabled": false, | |
// "editor.hover.enabled": false, | |
// "typescript.suggestionActions.enabled": false, | |
// "rust-analyzer.hoverActions.enable": false, | |
"files.exclude": { | |
"rustfmt.toml": true, | |
}, | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false | |
}, | |
"workbench.colorCustomizations": { | |
// "editor.lineHighlightBackground": "#55555510", | |
"editor.selectionBackground": "#303030", | |
// "editor.selectionHighlightBackground": "#00497315", | |
// "editor.wordHighlightBackground": "#3d3d3d", | |
// "editorCursor.foreground": "#868686" | |
}, | |
"window.zoomLevel": 2, | |
// "editor.quickSuggestionsDelay": 1000, // not needed, see editor.quickSuggestions: ...false | |
"editor.lineNumbers": "on", | |
"editor.guides.indentation": false, | |
"editor.guides.highlightActiveIndentation": false, | |
"editor.renderWhitespace": "none", | |
// for rust | |
"editor.padding.top": 8, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontSize": 20, | |
//// TURN OFF WHEN REAL DEV | |
"editor.selectionHighlight": false, | |
"git.decorations.enabled": false, | |
"git.enabled": false, | |
"editor.hover.delay": 2000, | |
"editor.occurrencesHighlight": false, | |
"editor.suggestOnTriggerCharacters": false, | |
"editor.suggest.showTypeParameters": false, | |
"editor.quickSuggestionsDelay": 1000, | |
"editor.renderLineHighlight": "none", | |
"terminal.integrated.fontSize": 18, | |
"editor.glyphMargin": false, | |
//// VSCode header / footer | |
"breadcrumbs.enabled": false, | |
"workbench.editor.showTabs": true, | |
"workbench.statusBar.visible": false, | |
"editor.inlayHints.fontSize": 16 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment