Last active
January 9, 2020 09:50
-
-
Save habdenscrimen/8e0127aeffda0a8025cb39edea663e49 to your computer and use it in GitHub Desktop.
VSCode 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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.iconTheme": "file-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.visible": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.editor.closeOnFileDelete": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.list.automaticKeyboardNavigation": false, | |
// | |
// Editor | |
// | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.scrollBeyondLastLine": false, | |
"editor.tabSize": 2, | |
"editor.cursorBlinking": "solid", | |
"editor.fontFamily": "'Fira Code'", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
// | |
// Breadcrumbs | |
// | |
"breadcrumbs.enabled": false, | |
// | |
// Files | |
// | |
"files.eol": "\n", | |
"files.insertFinalNewline": true, | |
// | |
// Extensions | |
// | |
"extensions.showRecommendationsOnlyOnDemand": true, | |
"extensions.closeExtensionDetailsOnViewChange": true, | |
"extensions.ignoreRecommendations": true, | |
// | |
// Window | |
// | |
"window.zoomLevel": 0.9, | |
// | |
// Languages | |
// | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"rust-client.enableMultiProjectSetup": true, | |
"go.formatTool": "goimports", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment