Last active
September 21, 2018 13:00
-
-
Save yankcrime/339f2d9bac71b24ce2df8a30a29f0f81 to your computer and use it in GitHub Desktop.
VSCode 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
{ | |
"explorer.openEditors.visible": 0, | |
"editor.fontFamily": "IBM Plex Mono", | |
"editor.fontSize": 14, | |
"editor.minimap.enabled": false, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"window.zoomLevel": 0, | |
"workbench.activityBar.visible": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"terminal.integrated.fontSize": 14, | |
"window.titleBarStyle": "native", | |
"workbench.statusBar.visible": true, | |
"workbench.editor.showTabs": true, | |
"editor.scrollBeyondLastLine": false, | |
"explorer.confirmDelete": false, | |
"python.pythonPath": "~/.pyenv/shims/python", | |
"nasc-touchbar.toggleSidebar": true, | |
"nasc-touchbar.goToDefinition": true, | |
"nasc-touchbar.addCursorBelow": false, | |
"nasc-touchbar.rename": true, | |
"nasc-touchbar.togglePanel": true, | |
"nasc-touchbar.showCommands": false, | |
"nasc-touchbar.selectNext": false, | |
"nasc-touchbar.enableFuncGroup": false, | |
"nasc-touchbar.enableSrcGroup": false, | |
"nasc-touchbar.enableCursorsGroup": false, | |
"nasc-touchbar.enableEditorGroup": false, | |
"nasc-touchbar.addCursorAbove": false, | |
"nasc-touchbar.copyLineDown": false, | |
"nasc-touchbar.goToNext": false, | |
"nasc-touchbar.toggleWhiteSpace": false, | |
"nasc-touchbar.peekDefinition": true, | |
"nasc-touchbar.showReferences": true, | |
"nasc-touchbar.settings": false, | |
"nasc-touchbar.indent": false, | |
"nasc-touchbar.outdent": false, | |
"nasc-touchbar.jumpToBracket": false, | |
"nasc-touchbar.blockComment": true, | |
"nasc-touchbar.commentLine": false, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.cursorStyle": "line", | |
// "workbench.fontAliasing":"antialiased", | |
/* "workbench.colorCustomizations": { | |
"editorLineNumber.foreground": "#9ab8e1", | |
"editor.background": "#f4f4f4", | |
"editor.foreground": "#333333", | |
"editorCursor.background": "#f4f4f4" | |
}, */ | |
"workbench.colorCustomizations": { | |
"editorCursor.foreground": "#4078f2", | |
"editorCursor.background": "#FFFFFF", | |
"terminal.background":"#FFFFFF", | |
"terminal.foreground":"#404040", | |
"terminalCursor.background":"#404040", | |
"terminalCursor.foreground":"#404040", | |
"terminal.ansiBlack":"#FFFFFF", | |
"terminal.ansiBlue":"#0000FF", | |
"terminal.ansiBrightBlack":"#808080", | |
"terminal.ansiBrightBlue":"#0000FF", | |
"terminal.ansiBrightCyan":"#318495", | |
"terminal.ansiBrightGreen":"#007400", | |
"terminal.ansiBrightMagenta":"#A90D91", | |
"terminal.ansiBrightRed":"#C41A15", | |
"terminal.ansiBrightWhite":"#5E5E5E", | |
"terminal.ansiBrightYellow":"#826B28", | |
"terminal.ansiCyan":"#318495", | |
"terminal.ansiGreen":"#007400", | |
"terminal.ansiMagenta":"#A90D91", | |
"terminal.ansiRed":"#C41A15", | |
"terminal.ansiWhite":"#404040", | |
"terminal.ansiYellow":"#826B28" | |
}, | |
"editor.links": false, | |
"editor.codeLens": false, | |
"workbench.colorTheme": "GitHub Plus", | |
"workbench.statusBar.feedback.visible": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment