.zed/settings.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"wrap_guides": [80, 100],
"format_on_save": "on",
"languages": {
"Vue.js": {
"formatter": {
"external": {
"command": "bunx",
"arguments": ["oxfmt", "--stdin={buffer_path}"],
},
},
},
},
}
|