Created
June 30, 2020 23:40
-
-
Save jeffjohnson9046/e4682d722698c73afbba128fed821c72 to your computer and use it in GitHub Desktop.
My settings.json for VS Code
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#1a1a1a", | |
// Came from snazzy.json, here: https://github.com/Tyriar/vscode-snazzy/blob/master/snazzy.json | |
"terminalCursor.background": "#282a36", | |
"terminalCursor.foreground": "#97979b", | |
"terminal.selectionBackground": "#97979b33", | |
"terminal.foreground": "#eff0eb", | |
"terminal.ansiBlack": "#282a36", | |
"terminal.ansiRed": "#ff5c57", | |
"terminal.ansiGreen": "#5af78e", | |
"terminal.ansiYellow": "#f3f99d", | |
"terminal.ansiBlue": "#57c7ff", | |
"terminal.ansiMagenta": "#ff6ac1", | |
"terminal.ansiCyan": "#9aedfe", | |
"terminal.ansiWhite": "#f1f1f0", | |
"terminal.ansiBrightBlack": "#686868", | |
"terminal.ansiBrightRed": "#ff5c57", | |
"terminal.ansiBrightGreen": "#5af78e", | |
"terminal.ansiBrightYellow": "#f3f99d", | |
"terminal.ansiBrightBlue": "#57c7ff", | |
"terminal.ansiBrightMagenta": "#ff6ac1", | |
"terminal.ansiBrightCyan": "#9aedfe", | |
"terminal.ansiBrightWhite": "#eff0eb" | |
}, | |
"terminal.explorerKind": "external", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"terminal.integrated.shellArgs.windows": [], | |
"terminal.integrated.shell.windows": "", | |
"terminal.integrated.fontFamily": "MesloLGLDZ Nerd Font", | |
"terminal.integrated.cursorBlinking": true, | |
"editor.cursorStyle": "block", | |
"editor.rulers": [ | |
120 | |
], | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"java.configuration.checkProjectSettingsExclusions": false, | |
"java.requirements.JDK11Warning": false, | |
"java.semanticHighlighting.enabled": false, | |
"window.openFilesInNewWindow": "on", | |
"workbench.colorTheme": "Tech49", | |
"window.openFoldersInNewWindow": "on", | |
"window.nativeTabs": true, | |
"workbench.fontAliasing": "antialiased", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment