Skip to content

Instantly share code, notes, and snippets.

@nishantbadhautiya
Last active January 16, 2026 07:22
Show Gist options
  • Select an option

  • Save nishantbadhautiya/63257890a8eab85dba6497ce411ae195 to your computer and use it in GitHub Desktop.

Select an option

Save nishantbadhautiya/63257890a8eab85dba6497ce411ae195 to your computer and use it in GitHub Desktop.
my VS Code setting.json
{
"workbench.iconTheme": "material-icon-theme",
"files.autoSave": "afterDelay",
"code-runner.runInTerminal": true,
"code-runner.saveAllFilesBeforeRun": true,
"code-runner.saveFileBeforeRun": true,
"editor.wordWrap": "on",
"editor.mouseWheelZoom": true,
"editor.bracketPairColorization.enabled": true,
"editor.fontFamily": "'cascadia code',Consolas, 'Courier New', monospace",
"editor.stickyScroll.enabled": false,
"editor.fontSize": 18,
"notebook.cellToolbarVisibility": "hover",
"zenMode.hideLineNumbers": false,
"extensions.autoUpdate": false,
"extensions.autoCheckUpdates": false,
"security.workspace.trust.untrustedFiles": "open",
"python.terminal.activateEnvironment": false,
"code-runner.executorMap": {
"typescript": "tsx",
},
// ======================== VIM SETUP ==========================
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
// ========================= TODO SETUP ============================
"todohighlight.keywords": [
{
"text": "TODO:",
"color": "#ffffff",
"backgroundColor": "#1976d2", // blue - general task
"border": "1px solid #1565c0",
},
{
"text": "FIXME:",
"color": "#ffffff",
"backgroundColor": "#d32f2f", // red - bug fix
"border": "1px solid #b71c1c"
},
{
"text": "DEBUG:",
"color": "#00e5ff",
"backgroundColor": "#212121", // black - debug section
"border": "1px dashed #00e5ff"
},
{
"text": "REVIEW:",
"color": "#000000",
"backgroundColor": "#fdd835", // yellow - needs review
"border": "1px solid #fbc02d"
},
{
"text": "OPTIMIZE:",
"color": "#ffffff",
"backgroundColor": "#388e3c", // green - performance related
"border": "1px solid #2e7d32"
},
{
"text": "HACK:",
"color": "#ffffff",
"backgroundColor": "#6a1b9a", // purple - ugly but works
"border": "1px solid #4a148c",
},
{
"text": "NOTE:",
"color": "#000000",
"backgroundColor": "#90caf9", // sky blue - general info
"border": "1px solid #64b5f6"
},
{
"text": "TEMP:",
"color": "#ffffff",
"backgroundColor": "#8d6e63", // brown - temporary logic
"border": "1px dashed #5d4037"
},
{
"text": "QUESTION:",
"color": "#ffffff",
"backgroundColor": "#5c6bc0", // indigo - needs clarification
"border": "1px solid #3949ab"
},
{
"text": "WIP:",
"color": "#ffffff",
"backgroundColor": "#ef6c00", // orange - work in progress
"border": "1px solid #e65100"
}
],
"todohighlight.exclude": [
"**/node_modules/**",
"**/dist/**",
],
"terminal.integrated.allowedLinkSchemes": [
"file",
"http",
"https",
"mailto",
"vscode",
"vscode-insiders",
"docker-desktop"
],
"sonarlint.focusOnNewCode": true,
"liveServer.settings.port": 5173,
"notes.notesLocation": "/home/nishant/.others",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false,
"sql": true
},
"liveServer.settings.donotShowInfoMsg": true,
"workbench.startupEditor": "none",
"gitlens.ai.model": "vscode",
"gitlens.ai.vscode.model": "copilot:gpt-4.1",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment