Created
January 26, 2025 12:28
-
-
Save chamara-senarath/df0dd7a42c64315cb53474a947c85c1b to your computer and use it in GitHub Desktop.
Zed settings.json
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
| { | |
| "assistant": { | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "claude-3-5-sonnet" | |
| }, | |
| "version": "2" | |
| }, | |
| "nightly": { | |
| "enabled": true, | |
| "channel": "stable" | |
| }, | |
| "indent_guides": { | |
| "enabled": true, | |
| "coloring": "indent_aware" | |
| }, | |
| "theme": "Github Dark", | |
| "buffer_font_family": "JetBrains Mono", | |
| "ui_font_size": 14, | |
| "buffer_font_size": 12, | |
| "tab_bar": { | |
| "show": false | |
| }, | |
| "lsp": { | |
| "tailwindcss-language-server": { | |
| "settings": { | |
| "classAttributes": ["class", "className", "styles"] | |
| } | |
| }, | |
| "vtsls": { | |
| "settings": { | |
| // For TypeScript: | |
| "typescript": { "tsserver": { "maxTsServerMemory": 16184 } }, | |
| // For JavaScript: | |
| "javascript": { "tsserver": { "maxTsServerMemory": 16184 } } | |
| } | |
| } | |
| }, | |
| "languages": { | |
| "JavaScript": { | |
| "language_servers": ["typescript-language-server", "!vtsls", "..."], | |
| "code_actions_on_format": { | |
| "source.organizeImports": true, | |
| "source.fixAll.eslint": true | |
| } | |
| }, | |
| "TypeScript": { | |
| "language_servers": ["typescript-language-server", "!vtsls", "..."], | |
| "code_actions_on_format": { | |
| "source.organizeImports": true, | |
| "source.fixAll.eslint": true | |
| } | |
| }, | |
| "TSX": { | |
| "language_servers": ["typescript-language-server", "!vtsls", "..."], | |
| "code_actions_on_format": { | |
| "source.organizeImports": true, | |
| "source.fixAll.eslint": true | |
| } | |
| }, | |
| "PHP": { | |
| "language_servers": ["intelephense", "!phpactor", "..."] | |
| } | |
| }, | |
| "cursor_blink": true, | |
| "formatter": "prettier", | |
| // File syntax highlighting | |
| "file_types": { | |
| "Dockerfile": ["Dockerfile", "Dockerfile.*"], | |
| "JSON": ["json", "jsonc", "*.code-snippets"] | |
| }, | |
| "outline_panel": { | |
| "dock": "right" | |
| }, | |
| "collaboration_panel": { | |
| "dock": "right" | |
| }, | |
| "vim_mode": true, | |
| "terminal": { | |
| "cursor_shape": "bar", | |
| "blinking": "on", | |
| "shell": "system", | |
| "default_height": 20 | |
| }, | |
| "project_panel": { | |
| "indent_size": 12 | |
| }, | |
| "experimental.theme_overrides": { | |
| "panel.focused_border": "#FF0000" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment