Skip to content

Instantly share code, notes, and snippets.

@skatkov
Last active April 20, 2025 17:05
Show Gist options
  • Save skatkov/469e9eb867f5dc3ffb2a3dac65ae0640 to your computer and use it in GitHub Desktop.
Save skatkov/469e9eb867f5dc3ffb2a3dac65ae0640 to your computer and use it in GitHub Desktop.
zed.settings.json
{
"ui_font_family": "FiraCode Nerd Font Mono",
"buffer_font_family": "FiraCode Nerd Font Mono",
"theme": {
"mode": "system",
"light": "Alabaster",
"dark": "One Dark"
},
"lsp": {
"golangci-lint": {
"initialization_options": {
"command": [
"golangci-lint",
"run",
"--output.json.path=stdout",
"--issues-exit-code=1",
"--show-stats=false"
]
}
},
"ruby-lsp": {
"settings": {
"use_bundler": false
},
"initialization_options": {
"enabledFeatures": {
"diagnostics": false
}
}
}
},
"languages": {
"Ruby": {
"language_servers": ["ruby-lsp", "rubocop", "sorbet"]
}
},
"indent_guides": {
"enabled": true,
"coloring": "indent_aware",
"background_coloring": "indent_aware"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment