Files
zed-sync/settings.json

139 lines
2.9 KiB
JSON

// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"cli_default_open_behavior": "existing_window",
"icon_theme": "Material Icon Theme",
"auto_install_extensions": {
"dockerfile": true,
"env": true,
"html": true,
"material-icon-theme": true,
"mcp-server-context7": true,
"mcp-server-github": true,
"one-dark-pro": true,
"powershell": true,
"toml": true
},
"disable_ai": false,
"proxy": "",
"agent": {
"sidebar_side": "right",
"favorite_models": [],
"model_parameters": []
},
"project_panel": {
"dock": "left"
},
"telemetry": {
"diagnostics": false,
"metrics": false,
"anthropic_retention": false
},
"terminal": {
"font_size": 16.0,
"cursor_shape": "bar"
},
"base_keymap": "VSCode",
"file_scan_exclusions": [
"**/.git",
"**/.svn",
"**/.hg",
"**/.jj",
"**/CVS",
"**/.DS_Store",
"**/Thumbs.db",
"**/.classpath",
"**/.settings",
"**/.playwright-cli",
"**/output",
"**/.cursor",
"**/.vscode",
"**/.idea",
"**/.fleet",
"**/node_modules",
"**/bun.lockb",
"**/pnpm-lock.yaml",
"**/package-lock.json",
"**/yarn.lock",
"**/dist",
"**/out",
"**/build",
"**/.next",
"**/.nuxt",
"**/.output",
"**/.cache",
"**/.turbo",
"**/.vercel",
"**/.netlify",
"**/tsconfig.tsbuildinfo",
"**/auto-imports.d.ts",
"**/components.json",
"**/unplugin-vue-components.d.ts",
"src/*.d.ts",
"**/__pycache__",
"**/__init__.py",
"**/.ipynb_checkpoints",
"**/.pytest_cache",
"**/.mypy_cache",
"**/.venv",
"**/env",
"**/venv",
"**/.github",
"**/.husky",
"**/.npmrc",
"**/.eslintrc*",
"**/.prettier*",
"**/.editorconfig",
"**/.dockerignore",
"**/docker-compose.override.yml",
"**/cypress*",
"**/prisma/migrations"
],
"preview_tabs": {
"enabled": false
},
"git_panel": {
"fallback_branch_name": "master"
},
"sticky_scroll": {
"enabled": true
},
"minimap": {
"show": "always"
},
"hover_popover_delay": 250,
"cursor_blink": true,
"autosave": "on_focus_change",
"buffer_font_fallbacks": [
"Consolas",
"Sarasa Gothic SC",
"Courier New",
"monospace"
],
"buffer_font_family": "Fira Code",
"auto_indent_on_paste": true,
"linked_edits": true,
"show_edit_predictions": true,
"line_ending": "prefer_lf",
"hard_tabs": false,
"tab_size": 2,
"agent_servers": {
"codex-acp": {
"type": "registry"
}
},
"ui_font_size": 16,
"buffer_font_size": 16.0,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "One Dark Pro",
},
}