61 lines
1.4 KiB
JSON
61 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)
|
|
{
|
|
"icon_theme": "Zed (Default)",
|
|
"agent": {
|
|
"always_allow_tool_actions": true,
|
|
"default_model": {
|
|
"provider": "zed.dev",
|
|
"model": "claude-sonnet-4"
|
|
}
|
|
},
|
|
"features": {
|
|
"edit_prediction_provider": "none"
|
|
},
|
|
"outline_panel": {
|
|
"dock": "right"
|
|
},
|
|
"vim_mode": true,
|
|
"ui_font_size": 14,
|
|
"ui_font_family": "Iosevka",
|
|
"ui_font_fallbacks": ["MotoyaLMaru"],
|
|
"buffer_font_size": 14,
|
|
"buffer_font_family": "Iosevka",
|
|
"buffer_font_fallbacks": ["MotoyaLMaru"],
|
|
"languages": {
|
|
"Java": {
|
|
"formatter": {
|
|
"external": {
|
|
"command": "clang-format",
|
|
"arguments": ["--style=file", "--assume-filename={buffer_path}"]
|
|
}
|
|
},
|
|
"format_on_save": "on"
|
|
},
|
|
"R": {
|
|
"tab_size": 2
|
|
},
|
|
"C": {
|
|
"formatter": {
|
|
"external": {
|
|
"command": "clang-format",
|
|
"arguments": ["--style=file", "--assume-filename={buffer_path}"]
|
|
}
|
|
},
|
|
"format_on_save": "on"
|
|
}
|
|
},
|
|
"wrap_guides": [80],
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "Gruvbox Improved Light",
|
|
"dark": "Gruvbox Improved Dark"
|
|
}
|
|
}
|