Skip to main content

Posts

Showing posts from May, 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       }     }   } }