94 lines
2.1 KiB
JSON
94 lines
2.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)
|
|
{
|
|
"languages": {
|
|
"Janet": {
|
|
"tab_size": 2
|
|
}
|
|
},
|
|
"show_whitespaces": "all",
|
|
"diagnostics": {
|
|
"inline": {
|
|
"enabled": true,
|
|
},
|
|
},
|
|
"colorize_brackets": true,
|
|
"semantic_tokens": "combined",
|
|
"enable_language_server": false,
|
|
"diff_view_style": "split",
|
|
"cli_default_open_behavior": "existing_window",
|
|
"which_key": {
|
|
"enabled": true,
|
|
},
|
|
"helix_mode": true,
|
|
"project_panel": {
|
|
"hide_hidden": true,
|
|
"dock": "left",
|
|
},
|
|
"outline_panel": {
|
|
"dock": "left",
|
|
},
|
|
"collaboration_panel": {
|
|
"dock": "left",
|
|
},
|
|
"agent": {
|
|
"dock": "right",
|
|
"favorite_models": [],
|
|
"model_parameters": [],
|
|
},
|
|
"git_panel": {
|
|
"dock": "left",
|
|
},
|
|
"disable_ai": true,
|
|
"icon_theme": {
|
|
"mode": "dark",
|
|
"light": "Zed (Default)",
|
|
"dark": "Zed (Default)",
|
|
},
|
|
"ui_font_family": "Uiua386",
|
|
"buffer_font_family": "Uiua386",
|
|
"session": {
|
|
"trust_all_worktrees": true,
|
|
},
|
|
"vim_mode": false,
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 18.0,
|
|
"theme": {
|
|
"mode": "dark",
|
|
"light": "Kanagawa Lotus",
|
|
"dark": "Kanagawa",
|
|
},
|
|
"theme_overrides": {
|
|
"Kanagawa": {
|
|
"syntax": {
|
|
"comment": { "color": "#FF9E3B" },
|
|
"comment.doc": { "color": "#FF9E3B" },
|
|
"boolean": { "color": "#D27E99" },
|
|
"label": { "color": "#D27E99" },
|
|
"constant": { "color": "#D27E99" },
|
|
"constant.builtin": { "color": "#D27E99" },
|
|
},
|
|
},
|
|
"Kanagawa Lotus": {
|
|
"syntax": {
|
|
"comment": { "color": "#D27E99" },
|
|
"comment.doc": { "color": "#D27E99" },
|
|
"boolean": { "color": "#CC6D00" },
|
|
"label": { "color": "#CC6D00" },
|
|
"constant": { "color": "#CC6D00" },
|
|
"constant.builtin": { "color": "#CC6D00" },
|
|
"number": { "color": "#CC6D00" },
|
|
},
|
|
},
|
|
},
|
|
"file_types": {
|
|
"Python": ["coco"],
|
|
},
|
|
}
|