Files
dotfiles/dot_config/zed/settings.json

55 lines
1.1 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)
{
"agent": {
"model_parameters": [],
"default_profile": "write"
},
// "features": {
// "edit_prediction_provider": "none"
// },
"always_treat_brackets_as_autoclosed": true,
"tab_size": 4,
"base_keymap": "SublimeText",
"format_on_save": "off",
"ui_font_size": 16,
"buffer_font_size": 15,
"buffer_font_features": {
"calt": false
},
"theme": {
"mode": "system",
"light": "One Light",
"dark": "One Dark"
},
"languages": {
"JSON": {
"tab_size": 2
},
"JSONC": {
"tab_size": 2
},
"Elixir": {
"tab_size": 2
},
"Markdown": {
"soft_wrap": "editor_width"
},
"Jinja2": {
"remove_trailing_whitespace_on_save": false
},
"YAML": {
"tab_size": 2
}
},
"file_types": {
"Markdown": ["svx"]
}
}