Created
June 27, 2025 19:10
-
-
Save rajendrakumaryadav/f4f610c30b22af920efcab7636f5b9b3 to your computer and use it in GitHub Desktop.
vscode-settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "\"Cartograph CF\"", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 2, | |
"editor.fontSize": 24, | |
"editor.fontWeight": "500", | |
"terminal.integrated.fontFamily": "Consola, Liberation Mono", | |
"terminal.integrated.fontSize": 22, | |
"workbench.activityBar.iconClickBehavior": "focus", | |
"workbench.activityBar.location": "default", | |
"window.customTitleBarVisibility": "auto", | |
"window.menuBarVisibility": "toggle", | |
"redhat.telemetry.enabled": false, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.sideBar.location": "right", | |
"python.analysis.autoImportCompletions": true, | |
"files.autoSave": "onFocusChange", | |
"editor.detectIndentation": true, | |
"editor.insertSpaces": true, | |
"editor.inlayHints.enabled": "on", | |
"[go]": { | |
"editor.insertSpaces": true, | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": "always", | |
"source.fixAll": "always", | |
"source.freesymbols": "always" | |
}, | |
}, | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": "explicit", | |
"source.organizeImports": "explicit" | |
}, | |
"editor.defaultFormatter": "charliermarsh.ruff" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"material-icon-theme.files.color": "#7cb342", | |
"window.titleBarStyle": "custom", | |
"window.titleSeparator": " * ", | |
"window.commandCenter": true, | |
"window.density.editorTabHeight": "default", | |
"window.experimentalControlOverlay": true, | |
"editor.suggest.filterGraceful": true, | |
"workbench.layoutControl.enabled": false, | |
"cmake.showOptionsMovedNotification": false, | |
"editor.minimap.enabled": false, | |
"cmake.pinnedCommands": [ | |
"workbench.action.tasks.configureTaskRunner", | |
"workbench.action.tasks.runTask" | |
], | |
"workbench.iconTheme": "material-icon-theme", | |
"go.toolsManagement.autoUpdate": true, | |
"geminicodeassist.project": "gen-lang-client-0442163153", | |
"zig.zls.enabled": "on", | |
"diffEditor.codeLens": true, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"explorer.confirmDelete": false, | |
"git.blame.editorDecoration.enabled": true, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"dev.containers.dockerPath": "podman", | |
"github.copilot.nextEditSuggestions.enabled": true, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"window.autoDetectColorScheme": true, | |
"workbench.preferredLightColorTheme": "Visual Studio Dark - C++", | |
"workbench.editor.empty.hint": "hidden", | |
"chat.mcp.serverSampling": {}, | |
"chat.mcp.discovery.enabled": true, | |
"mcp": { | |
"inputs": [], | |
"servers": { | |
"mcp-server-time": { | |
"command": "python", | |
"args": [ | |
"-m", | |
"mcp_server_time", | |
"--local-timezone=Asia/kolkata", | |
], | |
"env": {} | |
} | |
} | |
}, | |
"files.associations": { | |
"*.py": "python" | |
}, | |
"makefile.configureOnOpen": true, | |
"python.pyrefly.disableLanguageServices": false, | |
"python.languageServer": "Pylance", | |
"python.analysis.typeCheckingMode": "off", | |
"python.analysis.inlayHints.functionReturnTypes": true, | |
"python.analysis.inlayHints.variableTypes": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment