Last active
April 20, 2025 17:05
-
-
Save skatkov/469e9eb867f5dc3ffb2a3dac65ae0640 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
{ | |
"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