Skip to content

Instantly share code, notes, and snippets.

@nonaybay
Created October 19, 2020 05:08
Show Gist options
  • Save nonaybay/eff51b9c3bfc4e1e986b2ae0b282815c to your computer and use it in GitHub Desktop.
Save nonaybay/eff51b9c3bfc4e1e986b2ae0b282815c to your computer and use it in GitHub Desktop.
{
// Janelas
"window.autoDetectColorScheme": true,
"window.title": "${activeEditorLong}${separator}",
"window.titleBarStyle": "native",
"window.titleSeparator": " | ",
"window.zoomLevel": 0,
"editor.glyphMargin": false,
"editor.padding.bottom": 2,
"editor.padding.top": 2,
// Fonte
"editor.fontSize": 14,
"editor.lineHeight": 18, // fontSize * (4 / 3)
"editor.fontFamily": "Monaco, monospace",
"editor.fontLigatures": true,
"editor.fontWeight": "normal",
"editor.insertSpaces": false,
// Tema
"workbench.colorTheme": "Xcode Partial (Dark)",
// Indentação Python
"[python]": {
"editor.tabCompletion": "on",
"editor.tabSize": 8,
"editor.autoIndent": "full",
"editor.detectIndentation": true,
"editor.insertSpaces": false,
},
// Indentação HTML
"[html]": {
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.autoIndent": "full",
"editor.detectIndentation": true,
"editor.insertSpaces": false,
},
// Pylance
"python.languageServer": "Pylance",
"python.analysis.autoSearchPaths": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment