Last active
April 8, 2025 21:13
-
-
Save yoniLavi/3ab7035c2307d04868329954824fbc57 to your computer and use it in GitHub Desktop.
My VS Code 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
{ | |
"css.format.newlineBetweenRules": false, | |
"debug.onTaskErrors": "debugAnyway", | |
"diffEditor.codeLens": true, | |
"editor.accessibilitySupport": "off", | |
"editor.autoClosingBrackets": "never", | |
"editor.autoClosingQuotes": "never", | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.dragAndDrop": false, | |
"editor.formatOnType": true, | |
"editor.guides.bracketPairs": true, | |
"editor.guides.bracketPairsHorizontal": true, | |
"editor.guides.highlightActiveIndentation": true, | |
"editor.hover.enabled": true, | |
"editor.indentSize": "tabSize", | |
"editor.inlayHints.fontSize": 12, | |
"editor.inlayHints.padding": false, | |
"editor.inlineSuggest.enabled": true, | |
"editor.linkedEditing": true, | |
"editor.mouseWheelScrollSensitivity": 0.5, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.multiCursorPaste": "spread", | |
"editor.semanticHighlighting.enabled": true, | |
"editor.tabSize": 2, | |
"editor.unicodeHighlight.allowedCharacters": {"×": true}, | |
"explorer.confirmDelete": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"git.autofetch": true, | |
"gitlens.defaultDateFormat": "DD MMMM YYYY HH:mm", | |
"gitlens.defaultDateShortFormat": "DD/MM/YYYY", | |
"html.autoClosingTags": false, | |
"html.autoCreateQuotes": false, | |
"html.format.extraLiners": " ", | |
"html.format.indentInnerHtml": false, | |
"html.format.maxPreserveNewLines": 2, | |
"http.proxySupport": "off", | |
"notebook.lineNumbers": "on", | |
"redhat.telemetry.enabled": false, | |
"rust-analyzer.check.command": "clippy", | |
"terminal.external.windowsExec": "C:\\Program Files\\Git\\git-bash.exe", | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"terminal.integrated.macOptionIsMeta": true, | |
"terminal.integrated.mouseWheelScrollSensitivity": 0.5, | |
"terminal.integrated.scrollback": 100000000, | |
"python.analysis.typeCheckingMode": "basic", | |
"jupyter.askForKernelRestart": false, | |
"jupyter.widgetScriptSources": [ | |
"jsdelivr.com", | |
"unpkg.com" | |
], | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false | |
}, | |
"workbench.list.mouseWheelScrollSensitivity": 0.5, | |
"workbench.colorTheme": "Spinel", | |
"workbench.colorCustomizations": { | |
"[Default Dark+]": { | |
"editorInlayHint.background": "#222222", | |
"editorInlayHint.foreground": "#666666", | |
}, | |
"editorIndentGuide.activeBackground1": "#FFB86C", | |
"editorIndentGuide.activeBackground2": "#FF75B5", | |
"editorIndentGuide.activeBackground3": "#45A9F9", | |
"editorIndentGuide.activeBackground4": "#B084EB", | |
"editorIndentGuide.activeBackground5": "#E6E6E6", | |
"editorIndentGuide.activeBackground6": "#19F9D8", | |
"editorIndentGuide.background1": "#996E40", | |
"editorIndentGuide.background2": "#99466C", | |
"editorIndentGuide.background3": "#296595", | |
"editorIndentGuide.background4": "#694F8D", | |
"editorIndentGuide.background5": "#8A8A8A", | |
"editorIndentGuide.background6": "#0F9581" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features", | |
}, | |
"[python]": { | |
"editor.tabSize": 4, | |
"editor.formatOnType": true, | |
"editor.rulers": [80, 120], | |
}, | |
"[markdown]": { | |
"files.trimTrailingWhitespace": false | |
}, | |
"yaml.customTags": [ | |
"!And", | |
"!And sequence", | |
"!If", | |
"!If sequence", | |
"!Not", | |
"!Not sequence", | |
"!Equals", | |
"!Equals sequence", | |
"!Or", | |
"!Or sequence", | |
"!FindInMap", | |
"!FindInMap sequence", | |
"!Base64", | |
"!Join", | |
"!Join sequence", | |
"!Cidr", | |
"!Ref", | |
"!Sub", | |
"!Sub sequence", | |
"!GetAtt", | |
"!GetAZs", | |
"!ImportValue", | |
"!ImportValue sequence", | |
"!Select", | |
"!Select sequence", | |
"!Split", | |
"!Split sequence" | |
], | |
"workbench.startupEditor": "none", | |
"git.confirmSync": false, | |
"git.enableSmartCommit": true, | |
"notebook.editorOptionsCustomizations": { | |
"editor.tabSize": 4, | |
"editor.indentSize": 4 | |
}, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"terminal.integrated.env.osx": {}, | |
"console-ninja.featureSet": "Community", | |
"terminal.integrated.env.windows": {}, | |
"amazonQ.telemetry": false, | |
"explorer.confirmDragAndDrop": false, | |
"python.createEnvironment.trigger": "off", | |
"notebook.consolidatedRunButton": true, | |
"notebook.output.textLineLimit": 10, | |
"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", | |
"Cargo.toml": "Cargo.lock", | |
"*.sqlite": "${capture}.${extname}-*", | |
"*.db": "${capture}.${extname}-*", | |
"*.sqlite3": "${capture}.${extname}-*", | |
"*.db3": "${capture}.${extname}-*", | |
"*.sdb": "${capture}.${extname}-*", | |
"*.s3db": "${capture}.${extname}-*" | |
}, | |
"gitlens.mode.active": "zen" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment