Last active
November 23, 2021 19:03
-
-
Save smellymonk/38aa2e53ba4d86cad588010eb34297f4 to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains hidden or 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
{ | |
"breadcrumbs.enabled": false, | |
"city-lights-icons-vsc.hidesExplorerArrows": true, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 5000, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.autoClosingBrackets": "never", | |
"editor.autoClosingOvertype": "never", | |
"editor.autoIndent": "keep", | |
"editor.autoSurround": "never", | |
"editor.codeLens": false, | |
"editor.folding": false, | |
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 15, | |
"editor.glyphMargin": false, | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
"editor.lightbulb.enabled": false, | |
"editor.lineNumbers": "on", | |
"editor.matchBrackets": "never", | |
"editor.minimap.enabled": false, | |
"editor.occurrencesHighlight": false, | |
"editor.renderFinalNewline": true, | |
"editor.renderIndentGuides": false, | |
"editor.renderLineHighlight": "gutter", | |
"editor.renderWhitespace": "boundary", | |
"editor.selectionHighlight": false, | |
"editor.suggest.localityBonus": false, | |
"editor.suggestOnTriggerCharacters": true, | |
"editor.tabSize": 2, | |
"editor.wordWrap": "on", | |
"explorer.openEditors.visible": 0, | |
"scm.diffDecorations": "none", | |
"terminal.integrated.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.fontSize": 15, | |
"terminal.integrated.lineHeight": 1, | |
"window.titleBarStyle": "custom", | |
"window.zoomLevel": 0, | |
"workbench.activityBar.visible": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.showIcons": true, | |
"workbench.editor.showTabs": false, | |
"workbench.editor.tabSizing": "shrink", | |
"workbench.iconTheme": "city-lights-icons-vsc", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.visible": false, | |
"workbench.tree.indent": 22, | |
"workbench.colorCustomizations": { | |
"editorWhitespace.foreground": "#333", | |
"terminal.background": "#101010", | |
"terminal.foreground": "#B9B9B9", | |
"terminalCursor.background": "#B9B9B9", | |
"terminalCursor.foreground": "#B9B9B9", | |
"terminal.ansiBlack": "#101010", | |
"terminal.ansiBlue": "#686868", | |
"terminal.ansiBrightBlack": "#525252", | |
"terminal.ansiBrightBlue": "#686868", | |
"terminal.ansiBrightCyan": "#868686", | |
"terminal.ansiBrightGreen": "#8E8E8E", | |
"terminal.ansiBrightMagenta": "#747474", | |
"terminal.ansiBrightRed": "#7C7C7C", | |
"terminal.ansiBrightWhite": "#F7F7F7", | |
"terminal.ansiBrightYellow": "#A0A0A0", | |
"terminal.ansiCyan": "#868686", | |
"terminal.ansiGreen": "#8E8E8E", | |
"terminal.ansiMagenta": "#747474", | |
"terminal.ansiRed": "#7C7C7C", | |
"terminal.ansiWhite": "#B9B9B9", | |
"terminal.ansiYellow": "#A0A0A0" | |
}, | |
"workbench.colorTheme": "Base16 Dark Grayscale" | |
} |
I like a lot of these settings, but making the terminal monochrome is a little much for me 😂
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use the following extensions:
...with color theme set to:
Base16 Dark Grayscale
...with icon theme set to:
City Lights Icon Theme (Visual Studio Code) - Black & White
...with font set to:
Dank Mono
, found here: https://gumroad.com/l/dank-monoThese are all set in the settings file above. The font and font size for viewing a file and for the terminal are separate.