Skip to content

Instantly share code, notes, and snippets.

@skatkov
Last active April 20, 2025 17:05
Show Gist options
  • Select an option

  • Save skatkov/469e9eb867f5dc3ffb2a3dac65ae0640 to your computer and use it in GitHub Desktop.

Select an option

Save skatkov/469e9eb867f5dc3ffb2a3dac65ae0640 to your computer and use it in GitHub Desktop.

Revisions

  1. skatkov revised this gist Apr 20, 2025. 1 changed file with 0 additions and 8 deletions.
    8 changes: 0 additions & 8 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -1,11 +1,3 @@
    // 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",
  2. skatkov created this gist Apr 20, 2025.
    50 changes: 50 additions & 0 deletions settings.json
    Original 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"
    }
    }