Last active
July 30, 2019 12:27
-
-
Save arcostasi/f69d91f89df90f87b93ee903cf8a5255 to your computer and use it in GitHub Desktop.
my-vscode-preferences-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
{ | |
// Color Theme: Dark (Visual Studio) | |
// Editor settings | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontLigatures": true, | |
// Applies a visual signal to the left of the selected line. | |
"editor.renderLineHighlight": "gutter", | |
// Applies vertical lines for remember word wrap in large code | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"editor.tabSize": 2, | |
"editor.renderWhitespace": "all", | |
"editor.minimap.showSlider": "always", | |
"editor.parameterHints.enabled": false, | |
"editor.formatOnSave": false, | |
"files.trimTrailingWhitespace": true, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"window.menuBarVisibility": "default", | |
"window.zoomLevel": 0, | |
// Define the sidebar icons theme | |
"workbench.activityBar.visible": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.sideBar.location": "left", | |
"workbench.startupEditor": "newUntitledFile", | |
"breadcrumbs.enabled": true, | |
// Terminal settings | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe", | |
"terminal.integrated.fontSize": 14, | |
// ESLint settings, static code analysis tool for | |
// identifying problematic patterns in JavaScript. | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
{ | |
"language": "javascript", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascriptreact", | |
"autoFix": true | |
}, | |
{ | |
"language": "typescript", | |
"autoFix": true | |
}, | |
{ | |
"language": "typescriptreact", | |
"autoFix": true | |
} | |
], | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"nunjucks": "html" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"nunjucks": "html" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"typescript.tsserver.log": "verbose", | |
// Git settings | |
"git.path": "C:\\tools\\git.bat", | |
"git.enableSmartCommit": true, | |
"git.ignoreMissingGitWarning": true, | |
"extensions.ignoreRecommendations": false, | |
// GitLens extension settings | |
"gitlens.codeLens.recentChange.enabled": false, | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"workbench.colorTheme": "Visual Studio Dark", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment