Skip to content

Instantly share code, notes, and snippets.

@diegonatalo
Last active June 3, 2023 13:48
Show Gist options
  • Save diegonatalo/059d39fd56c5b9fc1db6807678e96552 to your computer and use it in GitHub Desktop.
Save diegonatalo/059d39fd56c5b9fc1db6807678e96552 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.lineHeight": 26,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [80, 120],
"editor.linkedEditing": true,
"editor.semanticHighlighting.enabled": false,
"editor.parameterHints.enabled": false,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "MesloLGM NF",
"terminal.integrated.tabs.enabled": false,
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.enablePersistentSessions": false,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"args": ["-nologo"]
}
},
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none",
"workbench.editor.labelFormat": "short",
"workbench.editor.untitled.hint": "hidden",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"files.eol": "\n",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.addMissingImports": true
},
"eslint.validate": ["javascript", "javascriptreact"],
"[prisma]": {
"editor.formatOnSave": true
},
"material-icon-theme.files.associations": {
"tsconfig.json": "tune",
"tsconfig.node.json": "json",
"stories.mdx": "storybook"
},
"material-icon-theme.activeIconPack": "nest",
"editor.accessibilitySupport": "off",
"extensions.ignoreRecommendations": true,
"workbench.colorTheme": "Omni",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment