Skip to content

Instantly share code, notes, and snippets.

@tjklemz
Last active November 23, 2021 19:03
Show Gist options
  • Save tjklemz/38aa2e53ba4d86cad588010eb34297f4 to your computer and use it in GitHub Desktop.
Save tjklemz/38aa2e53ba4d86cad588010eb34297f4 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"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"
}
@tjklemz
Copy link
Author

tjklemz commented Mar 16, 2021

I use the following extensions:

Name: Base16 Themes
Id: andrsdc.base16-themes
Description: Base 16 themes ported from TextMate/Sublime
Version: 1.4.5
Publisher: AndrsDC
VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes
Name: City Lights Icon package
Id: yummygum.city-lights-icon-vsc
Description: The City Lights icon pack is a gorgeous set of icons which you can toggle by color or grayscale to enhance your focus
Version: 1.1.3
Publisher: Yummygum
VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=Yummygum.city-lights-icon-vsc

...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-mono

These are all set in the settings file above. The font and font size for viewing a file and for the terminal are separate.

@aedwardg
Copy link

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