Skip to content

Instantly share code, notes, and snippets.

@asolera
Created January 28, 2024 03:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asolera/1a275b98028fdf780661eb0e975cb023 to your computer and use it in GitHub Desktop.
Save asolera/1a275b98028fdf780661eb0e975cb023 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.startupEditor": "none",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.indentSize": "tabSize",
"editor.detectIndentation": false,
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"editor.fontFamily": "JetBrains Mono",
"editor.lineHeight": 1.8,
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"workbench.activityBar.location": "hidden",
"window.menuBarVisibility": "compact",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"apc.font.family": "Inter",
"window.titleBarStyle": "native",
"apc.electron": {
"titleBarStyle": "hidden",
},
"apc.listRow": {
"height": 24
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
},
"workbench.colorTheme": "Rosé Pine",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, vite.*",
".gitignore": ".git*",
"composer.json": "composer.*, artisan, phpunit.xml",
".env": ".env*"
},
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font"
}
@asolera
Copy link
Author

asolera commented Jan 28, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment