Last active
March 6, 2025 19:49
-
-
Save dinatoclara22/ce78ccdc23b77926e3d6ee9b78dbdc1f to your computer and use it in GitHub Desktop.
VS Code - config
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 settings | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.lineHeight": 1.8, | |
"editor.fontSize": 14, | |
"editor.fontLigatures": false, | |
"editor.fontFamily": "JetBrains Mono Medium", | |
"editor.tabSize": 4, | |
"editor.cursorBlinking": "expand", | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"editor.wordWrap": "on", | |
"editor.fastScrollSensitivity": 4, | |
"editor.mouseWheelScrollSensitivity": 2, | |
"editor.renderLineHighlight": "gutter", | |
"editor.minimap.autohide": true, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.smoothScrolling": true, | |
"editor.semanticHighlighting.enabled": false, | |
"explorer.compactFolders": false, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmPasteNative": false, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "FiraCode Nerd Font", | |
"terminal.integrated.fastScrollSensitivity": 2, | |
"terminal.integrated.smoothScrolling": true, | |
"window.zoomLevel": 1, | |
"workbench.productIconTheme": "fluent-icons", | |
"workbench.editor.labelFormat": "short", | |
"workbench.tree.indent": 14, | |
"workbench.reduceMotion": "off", | |
"indentRainbow.indicatorStyle": "light", | |
"indentRainbow.lightIndicatorStyleLineWidth": 3, | |
"breadcrumbs.enabled": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"github.copilot.enable": { | |
"*": false | |
}, | |
"editor.accessibilitySupport": "off", | |
"security.workspace.trust.untrustedFiles": "open", | |
"python.createEnvironment.trigger": "off", | |
"symbols.hidesExplorerArrows": false, | |
"symbols.files.associations": { | |
"requirements.txt": "text", | |
"*.txt": "document" | |
}, | |
"symbols.folders.associations": { | |
"model": "folder-purple-outline", | |
"gcp_api": "folder-sky-outline" | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"editor.formatOnSaveMode": "modifications", | |
"git.confirmSync": false, | |
"git.ignoreRebaseWarning": true, | |
"gitlens.views.commitDetails.files.layout": "tree", | |
"editor.autoClosingQuotes": "always", | |
"[markdown]": { | |
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint" | |
}, | |
"dart.flutterSdkPath": "C:\\flutter", | |
"workbench.colorCustomizations": { | |
"titleBar.activeBackground": "#16161D", | |
"activityBar.background": "#1F1F28", | |
"tab.activeBorder": "#957FB8", | |
"tab.hoverBackground": "#1F1F28", | |
"tab.activeBackground": "#1F1F28", | |
"activityBarBadge.background": "#7E9CD8", | |
"sideBarSectionHeader.background": "#1F1F28", | |
"activityBarBadge.foreground": "#1F1F28" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"terminal.integrated.env.osx": { | |
"Q_NEW_SESSION": "1" | |
}, | |
"workbench.colorTheme": "Kanagawa" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment