Created
March 17, 2026 23:00
-
-
Save osbre/6c7f654201a5e31506a80a7c3af85b6c to your computer and use it in GitHub Desktop.
My Zed config
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
| // 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) | |
| { | |
| "ui_font_family": "IBM Plex Mono", | |
| "buffer_font_family": "IBM Plex Mono", | |
| "ui_font_size": 16, | |
| "buffer_font_size": 19.0, | |
| "theme": { | |
| "mode": "dark", | |
| "light": "One Light", | |
| "dark": "Tailwind Syntax", | |
| }, | |
| "lsp": { | |
| "expert": { | |
| "binary": { | |
| "arguments": ["--stdio"], | |
| }, | |
| }, | |
| }, | |
| "languages": { | |
| "Elixir": { | |
| "language_servers": [ | |
| "expert", | |
| "!elixir-ls", | |
| "!next-ls", | |
| "!lexical", | |
| "...", | |
| ], | |
| }, | |
| }, | |
| "git": { | |
| "inline_blame": { | |
| "enabled": false, | |
| }, | |
| }, | |
| "toolbar": { | |
| "breadcrumbs": false, | |
| "quick_actions": false, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment