Skip to content

Instantly share code, notes, and snippets.

@pnettto
Created December 5, 2025 15:21
Show Gist options
  • Select an option

  • Save pnettto/0092ec5ccd84c0fd4b19892e47d4dbb7 to your computer and use it in GitHub Desktop.

Select an option

Save pnettto/0092ec5ccd84c0fd4b19892e47d4dbb7 to your computer and use it in GitHub Desktop.
VSCode settings
{
// Editor Formatting Settings
"[sql]": {
"editor.defaultFormatter": "inferrinizzard.prettier-sql-vscode"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
// Amazon Q telemetry
"amazonQ.telemetry": false,
// Chat settings
"chat.editing.alwaysSaveWithGeneratedChanges": true,
// Data Wrangler settings
"dataWrangler.defaultViewingFilterOptions": "advanced",
"dataWrangler.experiments.autoDetectCsvDelimiter": true,
// Editor settings
"editor.inlineSuggest.enabled": false,
"editor.minimap.enabled": false,
// File exclude settings
"files.exclude": {
"**/__pycache__": true
},
// Git settings
"git.enableSmartCommit": true,
// Jupyter settings
"jupyter.defaultKernel": "Python 3.9.6",
// Notebook settings
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "right"
},
"notebook.lineNumbers": "on",
"notebook.output.scrolling": true,
"notebook.output.textLineLimit": 15,
// Snowflake settings
"snowflake.connectionsConfigFile": "/Users/pedronetto/.snowflake/connections.toml",
"workbench.colorCustomizations": {
// Light blue selection highlight
"editor.selectionBackground": "#3d3d3d",
// Dark gray background for the status bar
"statusBar.background": "#1A1A1A",
// Slightly lighter gray for status bar when no folder is open
"statusBar.noFolderBackground": "#212121",
// Darker background for debugging mode
"statusBar.debuggingBackground": "#263238",
},
"workbench.startupEditor": "none",
"github.copilot.nextEditSuggestions.enabled": true,
"workbench.colorTheme": "New Moon",
"workbench.editor.empty.hint": "hidden",
"terminal.integrated.stickyScroll.enabled": false,
"workbench.activityBar.location": "hidden",
"claudeCode.preferredLocation": "sidebar",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment