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

Setting program_name in mysql session_connect_attrs allows you to see the name of the program connected

I am using mysql for quite some time now. I have noticed that looking at client connections using mysql workbench so an interesting column ...