-
-
Save bobuk/ddfdf01799eede8a3d6426b98552a775 to your computer and use it in GitHub Desktop.
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
| { | |
| // "features": { | |
| // "inline_completion_provider": "zed" | |
| // }, | |
| "icon_theme": "Material Icon Theme", | |
| "features": { | |
| "edit_prediction_provider": "zed" | |
| }, | |
| "ssh_connections": [ | |
| { | |
| "host": "kiev.local", | |
| "projects": [ | |
| { | |
| "paths": ["/volume1/docker/SB/space"] | |
| } | |
| ] | |
| } | |
| ], | |
| "assistant": { | |
| "default_profile": "write", | |
| "always_allow_tool_actions": true, | |
| "enable_experimental_live_diffs": true, | |
| "default_model": { | |
| "provider": "anthropic", | |
| "model": "claude-3-5-sonnet-latest" | |
| }, | |
| "version": "2" | |
| }, | |
| "tabs": { | |
| "git_status": true, | |
| "file_icons": true, | |
| "show_close_button": "hover" | |
| }, | |
| "tab_bar": { | |
| "show": true, | |
| "show_nav_history_buttons": false | |
| }, | |
| "project_panel": { | |
| "indent_size": 16 | |
| }, | |
| "soft_wrap": "editor_width", | |
| "preferred_line_length": 140, | |
| "theme": "Catppuccin Latte - No Italics", | |
| "buffer_font_family": "Victor Mono", | |
| "buffer_font_weight": 400, | |
| "buffer_line_height": "comfortable", | |
| "ui_font_family": "Zed Plex Sans", | |
| "ui_font_size": 14, | |
| "buffer_font_size": null, | |
| "show_edit_predictions": true, | |
| "collaboration_panel": { | |
| "button": false | |
| }, | |
| "auto_signature_help": true, | |
| "terminal": { | |
| "dock": "bottom", | |
| "detect_venv": { "on": { "activate_script": "fish" } }, | |
| "env": { "EDITOR": "zed --wait" } | |
| }, | |
| "indent_guides": { | |
| "enabled": true, | |
| "coloring": "indent_aware" | |
| }, | |
| "vim_mode": true, | |
| "inlay_hints": { "enabled": true }, | |
| "scrollbar": { "show": "never" }, | |
| "languages": { | |
| "Python": { | |
| "format_on_save": "on", | |
| "language_servers": ["pyright", "ruff"], | |
| "formatter": [ | |
| { | |
| "code_actions": { | |
| "source.organizeImports.ruff": true, | |
| "source.fixAll.ruff": true | |
| } | |
| }, | |
| { | |
| "language_server": { | |
| "name": "ruff" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| "lsp": { | |
| "ruff": { | |
| "initialization_options": { | |
| "settings": { | |
| "lineLength": 130, | |
| "lint": { | |
| "extendSelect": ["I"] | |
| } | |
| } | |
| } | |
| }, | |
| "pyright": { | |
| "settings": { | |
| "python.analysis": { | |
| "diagnosticMode": "workspace" | |
| // "typeCheckingMode": "strict" | |
| }, | |
| "python": { | |
| "pythonPath": ".venv/bin/python" | |
| } | |
| } | |
| } | |
| }, | |
| "file_scan_exclusions": [ | |
| "**/.git", | |
| "**/.venv", | |
| "**/node_modules", | |
| "**/dist", | |
| "**/build", | |
| "**/target", | |
| "**/.rope*", | |
| "**/*_cache", | |
| "**/__pycache__", | |
| "**/.*-version", | |
| "**/.DS_Store" | |
| ], | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| }, | |
| "context_servers": { | |
| "mcp-server-brave-search": { | |
| "settings": { | |
| "brave_api_key": "" | |
| } | |
| }, | |
| "mcp-server-github": { | |
| "settings": { | |
| "github_personal_access_token": "" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment