Skip to content

Instantly share code, notes, and snippets.

@kshirish
Last active January 21, 2026 01:50
Show Gist options
  • Select an option

  • Save kshirish/787ca13a9be80018ffdd298feb348dd9 to your computer and use it in GitHub Desktop.

Select an option

Save kshirish/787ca13a9be80018ffdd298feb348dd9 to your computer and use it in GitHub Desktop.
VS Code settings
{
"editor.snippetSuggestions": "top",
"editor.suggestSelection": "first",
"editor.cursorSmoothCaretAnimation": "off",
"editor.smoothScrolling": true,
"editor.fontSize": 18,
"editor.wordWrap": "off",
"editor.fontLigatures": false,
// "editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"editor.fontFamily": "Ubuntu Mono, MonoLisa, SF Mono, Red Hat Mono, Roboto Mono",
"editor.fontWeight": "normal",
"editor.formatOnSave": true,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"explorer.confirmDragAndDrop": false,
"breadcrumbs.enabled": true,
"editor.cursorStyle": "line",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "Ubuntu Mono, FiraMono Nerd Font Mono",
"terminal.integrated.suggest.enabled": true,
"terminal.integrated.suggest.quickSuggestions": {
"strings": true,
"comments": false,
"other": true,
},
"chat.agent.enabled": true,
"terminal.integrated.fontWeight": "normal",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode",
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
},
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {},
"window.commandCenter": false,
"terminal.integrated.enableMultiLinePasteWarning": "never",
"extensions.ignoreRecommendations": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"code-runner.defaultLanguage": "javascript",
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"editor.accessibilitySupport": "off",
"liveServer.settings.donotShowInfoMsg": true,
"terminal.integrated.defaultProfile.osx": "zsh",
"svelte.ask-to-enable-ts-plugin": false,
"workbench.editor.empty.hint": "hidden",
"workbench.colorTheme": "Default Light+",
"editor.stickyScroll.enabled": false,
"yaml.schemas": {
"file:///Users/kisleyshirish/.vscode/extensions/atlassian.atlascode-4.0.14/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"redhat.telemetry.enabled": false,
"atlascode.jira.enabled": false,
"atlascode.bitbucket.enabled": false,
"atlascode.helpExplorerEnabled": false,
"files.associations": {
"*.svelte": "svelte",
},
"javascript.updateImportsOnFileMove.enabled": "never",
"codesandbox.currentWorkspace": "ws_HFqUTioKMzUYpZjwT9DjGS",
"remote.SSH.remotePlatform": {
"sandbox.lxmgcj.csb": "linux",
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"python.createEnvironment.trigger": "off",
"security.workspace.trust.untrustedFiles": "open",
"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, bun.lockb, bun.lock",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*",
},
"go.toolsManagement.autoUpdate": true,
"github.copilot.nextEditSuggestions.enabled": true,
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
"atlascode.bitbucket.showTerminalLinkPanel": false,
"workbench.panel.showLabels": false,
"chat.agent.maxRequests": 50,
"go.survey.prompt": false,
"[dockercompose]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "redhat.vscode-yaml",
},
"[github-actions-workflow]": {
"editor.defaultFormatter": "redhat.vscode-yaml",
},
"chat.tools.terminal.autoApprove": {
"npm install": true,
"npm list": true,
"npm run build": true,
"mv": true,
"mkdir": true,
"npm start": true,
"npm run dev": true,
"npx": true,
"timeout": true,
"docker-compose": true,
"docker ps": true,
},
"terminal.integrated.stickyScroll.enabled": false,
"aws.cloudformation.telemetry.enabled": false,
"aws.telemetry": false,
"chat.viewSessions.orientation": "stacked",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment