Created
July 24, 2019 12:23
-
-
Save zhunik/60692304b340f86bb189bcc9e514b3d1 to your computer and use it in GitHub Desktop.
VS Code settings
This file contains 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
{ | |
"terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
"terminal.integrated.fontSize": 12, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.rendererType": "canvas", | |
"terminal.integrated.scrollback": 10000, | |
"files.autoSave": "onFocusChange", | |
"telemetry.enableTelemetry": false, | |
"telemetry.enableCrashReporter": false, | |
//advanced new file settings. | |
"newFile.defaultBaseFileName": "new", | |
"newFile.defaultFileExtension": "js", | |
"newFile.relativeTo": "project", | |
"newFile.rootDirectory": "~", | |
"newFile.showPathRelativeTo": "project", | |
//editor settings | |
"editor.fontFamily": "'FiraCode-Retina', Hack, Menlo, monospace", | |
"editor.fontLigatures": true, | |
"editor.cursorStyle": "line-thin", | |
"editor.fontWeight": "400", | |
"editor.renderWhitespace": "none", | |
"window.zoomLevel": 0, | |
"workbench.fontAliasing": "antialiased", | |
"explorer.decorations.badges": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.mode.active": "zen", | |
"editor.fontSize": 14, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"node-module-intellisense.fileModuleExtensions": [ | |
".js", | |
".jsx", | |
".ts", | |
".d.ts", | |
".tsx", | |
".vue", | |
".json" | |
], | |
"explorer.confirmDragAndDrop": false, | |
"prettier.tabWidth": 2, | |
"editor.rulers": [120], | |
"prettier.trailingComma": "es5", | |
"editor.renderControlCharacters": true, | |
"breadcrumbs.enabled": true, | |
"explorer.confirmDelete": false, | |
"terminal.integrated.shell.osx": "/usr/local/bin/zsh", | |
"terminal.integrated.shellArgs.osx": [], | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"workbench.colorTheme": "Default Light+", | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"go.useLanguageServer": true, | |
"clang-format.style": "google" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment