Skip to content

Instantly share code, notes, and snippets.

@allanfantoni
Last active May 20, 2022 02:47
Show Gist options
  • Save allanfantoni/34bd2ac14ba78a3c61ba7ca0ffdd6040 to your computer and use it in GitHub Desktop.
Save allanfantoni/34bd2ac14ba78a3c61ba7ca0ffdd6040 to your computer and use it in GitHub Desktop.
Personal VSCode settings
{
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"workbench.iconTheme": "material-icon-theme",
"editor.rulers": [
80,
120
],
"editor.renderLineHighlight": "gutter",
"editor.tabSize": 2,
"terminal.integrated.fontSize": 14,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"njk": "html"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.parameterHints.enabled": false,
"breadcrumbs.enabled": true,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"git.enableSmartCommit": true,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"editor.suggestSelection": "first",
"extensions.ignoreRecommendations": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"git.confirmSync": false,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"security.workspace.trust.banner": "always",
"security.workspace.trust.startupPrompt": "always",
"gitlens.hovers.currentLine.over": "line",
"workbench.colorCustomizations": {
"[Default Dark+]": {
"activityBar.activeBackground": "#000",
"activityBar.background": "#000",
"editor.background": "#000",
"menu.background": "#000",
"sideBar.background": "#000",
"titleBar.activeBackground": "#000",
"titleBar.inactiveBackground": "#333"
}
},
"editor.fontFamily": "'Cascadia Mono', Consolas, 'Courier New', monospace",
"editor.fontSize": 13
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment