Created
March 2, 2025 01:06
-
-
Save 29decibel/01c04157598ce2adbf0a441be4521689 to your computer and use it in GitHub Desktop.
Zed settings for ruby and elixir
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 the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"assistant": { | |
"default_model": { | |
"provider": "zed.dev", | |
"model": "claude-3-7-sonnet-latest" | |
}, | |
"version": "2" | |
}, | |
"vim_mode": true, | |
"theme": "Gruvbox Dark", | |
"telemetry": { | |
"diagnostics": false, | |
"metrics": false | |
}, | |
"buffer_font_size": 15, | |
"lsp": { | |
"biome": { | |
"settings": { | |
"require_config_file": true | |
} | |
} | |
}, | |
"languages": { | |
"Ruby": { | |
"language_servers": ["ruby-lsp", "!solargraph", "!rubocop", "..."], | |
"format_on_save": { | |
"external": { | |
"command": "rubyfmt", | |
"arguments": [], | |
"stdin": true | |
} | |
} | |
}, | |
"Elixir": { | |
"format_on_save": { | |
"external": { | |
"command": "mix", | |
"arguments": ["format", "--stdin-filename", "{buffer_path}", "-"] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
config path:
~/.config/zed/settings.json