Skip to content

Instantly share code, notes, and snippets.

@paulohenriquesn
Created January 15, 2024 02:01
Show Gist options
  • Save paulohenriquesn/f993c04f8cf64ba30f3c4f32fa655dfb to your computer and use it in GitHub Desktop.
Save paulohenriquesn/f993c04f8cf64ba30f3c4f32fa655dfb to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
{
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Min Dark",
"editor.fontLigatures": true,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 18,
"editor.lineHeight": 1.8,
"editor.rulers": [
80,
120
],
"editor.renderLineHighlight": "gutter",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"explorer.compactFolders": false,
"breadcrumbs.enabled": false,
"editor.minimap.enabled": true,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"apc.electron": {
"titleBarStyle": "hiddenInset",
"frame": false
},
"apc.header": {
"height": 36
},
"apc.font.family": "JetBrains Mono",
"apc.stylesheet": {
".editor-actions": "display: none",
".nosidebar .inline-tabs-placeholder": "width: 75px",
".pane-header": "padding: 0 8px",
".pane-body": "padding: 8px",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;"
},
"apc.listRow": {
"height": 24
},
"window.commandCenter": false,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.profiles.windows": {
"Git Bash": {
"path": "C:\\Program Files\\Git\\bin\\bash.exe"
},
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
"workbench.productIconTheme": "fluent-icons",
"workbench.statusBar.visible": true,
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"files.exclude": {
"**/__pycache__": true
},
"tabnine.experimentalAutoImports": true,
"gitlens.codeLens.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"editor.fontVariations": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment