Skip to content

Instantly share code, notes, and snippets.

@osbre
Created March 17, 2026 23:00
Show Gist options
  • Select an option

  • Save osbre/6c7f654201a5e31506a80a7c3af85b6c to your computer and use it in GitHub Desktop.

Select an option

Save osbre/6c7f654201a5e31506a80a7c3af85b6c to your computer and use it in GitHub Desktop.
My Zed config
// 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