Skip to content

Instantly share code, notes, and snippets.

@dinatoclara22
Last active February 6, 2024 17:00
Show Gist options
  • Save dinatoclara22/ce78ccdc23b77926e3d6ee9b78dbdc1f to your computer and use it in GitHub Desktop.
Save dinatoclara22/ce78ccdc23b77926e3d6ee9b78dbdc1f to your computer and use it in GitHub Desktop.
VS Code - config
{
// Editor settings
"workbench.startupEditor": "newUntitledFile",
"editor.lineHeight": 1.8,
"editor.fontSize": 14,
"editor.accessibilitySupport": "off",
"editor.formatOnSave": true,
"editor.smoothScrolling": true,
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"workbench.iconTheme": "material-icon-theme",
// Window settings
"window.zoomLevel": 1,
// Terminal settings
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "CaskaydiaCove Nerd Font",
// Other settings
"symbols.hidesExplorerArrows": false,
"indentRainbow.indicatorStyle": "light",
"indentRainbow.lightIndicatorStyleLineWidth": 2,
"explorer.confirmDelete": false,
"workbench.colorTheme": "Tokyo Night",
"workbench.layoutControl.enabled": false,
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"apc.font.family": "Inter",
"editor.fontFamily": "JetBrains Mono",
"editor.tabSize": 4,
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"vscord.app.privacyMode.enable": true,
"editor.cursorBlinking": "smooth",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"explorer.confirmDragAndDrop": false,
"editor.wordWrap": "on",
"workbench.productIconTheme": "fluent-icons",
"vscord.status.idle.check": false,
"vscord.status.idle.disconnectOnIdle": true,
"symbols.files.associations": {
"*.module.ts": "nest",
"*.guard.ts": "typescript",
"*.spec.ts": "ts-test",
"*.e2e-spec.ts": "ts-test",
"vitest.config.e2e.ts": "vite",
".env.example": "gear",
".env": "gear"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment