Skip to content

Instantly share code, notes, and snippets.

@geekish
Last active October 24, 2025 17:58
Show Gist options
  • Select an option

  • Save geekish/ecb0e81f42e91f3e7813b537ff86a8f1 to your computer and use it in GitHub Desktop.

Select an option

Save geekish/ecb0e81f42e91f3e7813b537ff86a8f1 to your computer and use it in GitHub Desktop.
VS Code settings - only a part of my actual settings, for reference
[
{
"key": "ctrl+r",
"when": "findWidgetVisible && !replaceActive",
"command": "editor.action.startFindReplaceAction"
}
]
{
"diffEditor.ignoreTrimWhitespace": true,
"editor.fontFamily": "MonoLisa, Consolas, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.fontWeight": "300",
"editor.formatOnSave": true,
"editor.lineHeight": 1.75,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": false,
"editor.stickyScroll.scrollWithEditor": false,
"editor.tabSize": 2,
"emmet.excludeLanguages": [
"markdown",
"php"
],
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"eslint.useFlatConfig": true,
"explorer.confirmDelete": false,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}-*.tsx, ${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*"
},
"files.autoSave": "onFocusChange",
"git.autofetch": true,
"git.openRepositoryInParentFolders": "never",
"gitlens.plusFeatures.enabled": false,
"search.exclude": {
"**/node_modules": true,
"**/pnpm-lock.yaml": true
},
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true,
"security.allowedUNCHosts": [
"wsl.localhost"
],
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.fontFamily": "'MonoLisa Nerd Font', MonoLisa, monospace",
"terminal.integrated.lineHeight": 1.5,
"terminal.external.windowsExec": "C:\\WINDOWS\\System32\\wsl.exe",
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.updateImportsOnFileMove.enabled": "always",
"window.commandCenter": false,
"window.menuBarVisibility": "compact",
"window.openFoldersInNewWindow": "on",
"workbench.colorTheme": "Catppuccin Frappé",
"workbench.editorAssociations": {
"*.rmtree": "sqlite-viewer.option"
},
"workbench.iconTheme": "catppuccin-frappe",
"workbench.layoutControl.enabled": false,
"workbench.secondarySideBar.defaultVisibility": "hidden",
"workbench.tree.enableStickyScroll": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment