mirror of
https://github.com/danbulant/dotfiles
synced 2026-05-26 13:31:56 +00:00
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
// 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)
|
|
{
|
|
"show_signature_help_after_edits": true,
|
|
"inlay_hints": {
|
|
"show_parameter_hints": true,
|
|
"enabled": true,
|
|
},
|
|
"icon_theme": "VSCode Icons for Zed (Dark)",
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 15,
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "One Light",
|
|
"dark": "One Dark",
|
|
},
|
|
"languages": {
|
|
"JavaScript": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true,
|
|
},
|
|
},
|
|
"TypeScript": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true,
|
|
},
|
|
},
|
|
"TSX": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true,
|
|
},
|
|
},
|
|
},
|
|
"lsp": {
|
|
"vtsls": {
|
|
"settings": {
|
|
"vtsls": {
|
|
"experimental": {
|
|
"maxInlayHintLength": 15,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|