Last active
July 25, 2020 05:52
-
-
Save rikusen0335/5bfb4f6480ded495ee0e9324b6f49e8d 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
{ | |
"workbench.colorTheme": "Community Material Theme Darker High Contrast", | |
"editor.wordWrap": "on", | |
"editor.fontFamily": "'Fira Code', 'Source Han Code JP', Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"guides.active.width": 2, | |
"guides.active.extraIndent": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.maxTokenizationLineLength": 20000000, | |
"githubCompatibilit": true, | |
//"workbench.panel.defaultLocation": "right", | |
"workbench.colorCustomizations": { | |
// The background is optional | |
// "terminal.background": "#282a36", | |
"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.integrated.shell.linux": "/usr/bin/zsh", | |
"editor.renderIndentGuides": false, | |
"guides.active.expandBrackets": false, | |
"editor.hover.delay": 200, | |
"remote.SSH.remotePlatform": { | |
"vscode": "linux", | |
"192.168.0.192": "linux", | |
"develop_machine": "linux" | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "octref.vetur" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"window.zoomLevel": 0, | |
"editor.fontSize": 12, | |
"markdown.preview.fontSize": 12, | |
"debug.console.fontSize": 12, | |
"terminal.integrated.fontSize": 12, | |
"files.associations": { | |
}, | |
"files.watcherExclude": { | |
"**/__generated__/**": true, | |
"**/build/**": true, | |
"**/coverage/**": true | |
}, | |
"editor.fontWeight": "500", | |
"nativescript.analytics.enabled": true, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"workbench.iconTheme": "material-icon-theme", | |
"terminal.integrated.copyOnSelection": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment