Last active
October 6, 2025 16:52
-
-
Save jorgeav527/d27c0468f493f913dc8f8691bb338cbd to your computer and use it in GitHub Desktop.
zed personal configuration
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
| *.tmp* | |
| theme/ |
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
| [ | |
| { | |
| "context": "ProjectPanel", | |
| "bindings": { | |
| "enter": "project_panel::Rename" | |
| } | |
| }, | |
| { | |
| "context": "Editor && vim_mode == insert", | |
| "bindings": { | |
| "j k": "vim::NormalBefore", | |
| "k j": "vim::NormalBefore" | |
| } | |
| }, | |
| { | |
| "context": "Pane", | |
| "bindings": { | |
| "ctrl-1": ["pane::ActivateItem", 0], | |
| "ctrl-2": ["pane::ActivateItem", 1], | |
| "ctrl-3": ["pane::ActivateItem", 2], | |
| "ctrl-4": ["pane::ActivateItem", 3], | |
| "ctrl-5": ["pane::ActivateItem", 4], | |
| "ctrl-6": ["pane::ActivateItem", 5], | |
| "ctrl-7": ["pane::ActivateItem", 6], | |
| "ctrl-8": ["pane::ActivateItem", 7], | |
| "ctrl-9": ["pane::ActivateItem", 8], | |
| "ctrl-0": "pane::ActivateLastItem", | |
| // "ctrl--": "pane::GoBack", | |
| // "ctrl-_": "pane::GoForward", | |
| "ctrl-shift-t": "pane::ReopenClosedItem", | |
| "ctrl-shift-f": "project_search::ToggleFocus" | |
| } | |
| } | |
| ] |
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
| { | |
| "agent": { | |
| "default_model": { | |
| "provider": "openai", | |
| "model": "gpt-3.5-turbo" | |
| } | |
| }, | |
| "language_models": { | |
| "openai": { | |
| "available_models": [ | |
| { | |
| "name": "gpt-4o", | |
| "display_name": "gpt-4o", | |
| "max_tokens": 272000, | |
| "max_completion_tokens": 20000 | |
| }, | |
| { | |
| "name": "gpt-4o-2024-08-06", | |
| "display_name": "GPT 4o Summer 2024", | |
| "max_tokens": 128000 | |
| } | |
| ] | |
| } | |
| }, | |
| "ui_font_size": 13, | |
| "buffer_font_size": 13, | |
| "buffer_line_height": { | |
| "custom": 1.5 | |
| }, | |
| "terminal": { | |
| "font_family": "Hack Nerd Font Mono", | |
| "font_size": 12, | |
| "copy_on_select": true | |
| }, | |
| "buffer_font_family": "FiraMono Nerd Font Mono", | |
| "ui_font_family": "Hack Nerd Font Mono", | |
| "relative_line_numbers": false, | |
| "buffer_font_weight": 500, | |
| "base_keymap": "VSCode", | |
| "vim_mode": false, | |
| "file_types": { | |
| "Dockerfile": ["Dockerfile*"] | |
| }, | |
| "vim": { | |
| "use_system_clipboard": "on_yank" | |
| }, | |
| "theme": { | |
| "mode": "system", | |
| "light": "One Light", | |
| "dark": "Github Dark Colorblind" | |
| }, | |
| "tabs": { | |
| "close_position": "right", | |
| "file_icons": true, | |
| "git_status": true | |
| }, | |
| "inlay_hints": { | |
| "enabled": true | |
| }, | |
| "languages": { | |
| "JSON": { | |
| "tab_size": 4 | |
| }, | |
| "JSONC": { | |
| "tab_size": 4 | |
| }, | |
| "Python": { | |
| "language_servers": ["ty", "ruff", "!basedpyright"] | |
| } | |
| } | |
| } |
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
| [ | |
| { | |
| "label": "Python Debug File", | |
| "command": "Python debugger", | |
| "task_type": { | |
| "type": "debug", | |
| "kind": "python", | |
| "program": "$ZED_FILE", | |
| "request": "launch" | |
| } | |
| }, | |
| { | |
| "label": "Ruff check", | |
| "command": "ruff check --fix .", | |
| "reveal_target": "center" | |
| }, | |
| { | |
| "label": "Ruff format", | |
| "command": "ruff format .", | |
| "reveal_target": "center" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment