Saturday, May 10, 2025

My Zed editor config setting json file

I am using Zed editor, mostly for Go and web development. It is fast, yet not mature enough though I am still using it.

Here is my settings.json file for configuration:

// 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_size": 16,
  "buffer_font_size": 16,
  "theme": {
    "mode": "system",
    "light": "One Black",
    "dark": "One Dark"
  },
  "tab_size": 4,
  "languages": {
    "HTML": {
      "prettier": {
        "allowed": false
      }
    }
  }
}

 

No comments:

Post a Comment

My Tiny Spreadsheet Extension - A spreadsheet that lives in your browser

Download now   The problem You need a simple fast spreadsheet  Google Sheet is clutters up Excel files are lost Google Sheets are saved on t...