Last active
April 20, 2025 17:05
-
-
Save skatkov/469e9eb867f5dc3ffb2a3dac65ae0640 to your computer and use it in GitHub Desktop.
Revisions
-
skatkov revised this gist
Apr 20, 2025 . 1 changed file with 0 additions and 8 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,3 @@ { "ui_font_family": "FiraCode Nerd Font Mono", "buffer_font_family": "FiraCode Nerd Font Mono", -
skatkov created this gist
Apr 20, 2025 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,50 @@ // 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": "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" } }