Last active
July 26, 2025 20:21
-
-
Save govindlahoti/e4e869fec5b187a1cd27f5a81e6ae14b to your computer and use it in GitHub Desktop.
vsode
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
{ | |
"[astro]": { | |
"editor.defaultFormatter": "astro-build.astro-vscode" | |
}, | |
"[cpp]": { | |
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd" | |
}, | |
"[python]": { | |
"editor.defaultFormatter": "charliermarsh.ruff" | |
}, | |
"chat.commandCenter.enabled": false, | |
"chat.editor.fontSize": 14, | |
"clangd.fallbackFlags": ["-std=c++20"], | |
"clangd.onConfigChanged": "restart", | |
"debug.console.fontSize": 14, | |
"editor.accessibilitySupport": "off", | |
"editor.codeActionsOnSave": { | |
"source.addMissingImports": "always", | |
"source.organizeImports": "always", | |
"source.unusedImports": "always" | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.fontSize": 14, | |
"editor.formatOnSave": true, | |
"editor.guides.indentation": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.inlayHints.enabled": "off", | |
"editor.minimap.enabled": false, | |
"editor.occurrencesHighlight": "off", | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"editor.tabSize": 2, | |
"explorer.compactFolders": false, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.decorations.badges": false, | |
"explorer.decorations.colors": false, | |
"explorer.excludeGitIgnore": true, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 500, | |
"git.openRepositoryInParentFolders": "never", | |
"github.copilot.enable": { | |
"markdown": true, | |
"plaintext": true, | |
"scminput": true | |
}, | |
"github.copilot.nextEditSuggestions.enabled": true, | |
"github.copilot.nextEditSuggestions.fixes": true, | |
"javascript.format.semicolons": "remove", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"makefile.compileCommandsPath": "${workspaceFolder}/compile_commands.json", | |
"notebook.formatOnSave.enabled": true, | |
"outline.collapseItems": "alwaysCollapse", | |
"prettier.printWidth": 80, | |
"prettier.semi": false, | |
"prettier.tabWidth": 2, | |
"python.analysis.autoImportCompletions": true, | |
"python.analysis.diagnosticSeverityOverrides": { | |
"reportOptionalMemberAccess": "none" | |
}, | |
"python.analysis.typeCheckingMode": "standard", | |
"python.createEnvironment.trigger": "off", | |
"ruff.configuration": { | |
"indent-width": 2 | |
}, | |
"ruff.lineLength": 80, | |
"scm.inputFontSize": 14, | |
"terminal.integrated.allowedLinkSchemes": [ | |
"file", | |
"http", | |
"https", | |
"mailto", | |
"vscode", | |
"vscode-insiders" | |
], | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.persistentSessionReviveProcess": "onExitAndWindowClose", | |
"terminal.integrated.scrollback": 10000, | |
"terminal.integrated.shellIntegration.history": 1000, | |
"terminal.integrated.tabs.title": "${cwd}", | |
"typescript.format.semicolons": "remove", | |
"typescript.inlayHints.parameterNames.enabled": "all", | |
"typescript.preferences.importModuleSpecifier": "relative", | |
"typescript.preferences.includePackageJsonAutoImports": "on", | |
"typescript.preferences.preferTypeOnlyAutoImports": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"window.autoDetectColorScheme": true, | |
"window.commandCenter": false, | |
"window.confirmSaveUntitledWorkspace": false, | |
"window.customTitleBarVisibility": "windowed", | |
"window.restoreFullscreen": true, | |
"window.title": "${rootName}", | |
"window.titleBarStyle": "custom", | |
"workbench.activityBar.location": "hidden", | |
"workbench.colorCustomizations": { | |
"editorOverviewRuler.bracketMatchForeground": "#0000" | |
}, | |
"workbench.editor.editorActionsLocation": "hidden", | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.showTabs": "none", | |
"workbench.layoutControl.enabled": false, | |
"workbench.preferredDarkColorTheme": "Visual Studio Dark", | |
"workbench.preferredLightColorTheme": "Default Light+", | |
"workbench.secondarySideBar.defaultVisibility": "hidden", | |
"workbench.startupEditor": "none", | |
"workbench.statusBar.visible": false, | |
"zenMode.showTabs": "none" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment