mirror of
https://github.com/danbulant/dotfiles
synced 2026-09-17 13:23:51 +00:00
79 lines
1.9 KiB
JSON
79 lines
1.9 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": "dark",
|
|
"light": "One Light",
|
|
"dark": "One Dark",
|
|
},
|
|
// "minimap": {
|
|
// "show": "auto"
|
|
// },
|
|
"format_on_save": "modifications",
|
|
"diagnostics": {
|
|
"inline": {
|
|
"enabled": true
|
|
},
|
|
},
|
|
"image_viewer": {
|
|
"unit": "decimal"
|
|
},
|
|
"git_hosting_providers": [
|
|
{
|
|
"name": "Bad Apple",
|
|
"provider": "forgejo",
|
|
"base_url": "https://git.badapple.cz"
|
|
}
|
|
],
|
|
"semantic_tokens": "combined",
|
|
"cli_default_open_behavior": "existing_window",
|
|
"file_scan_exclusions": ["**/node_modules", "..."],
|
|
"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,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|