dotfiles/zed/settings.json
2025-02-04 08:20:51 -05:00

96 lines
2 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
{
"assistant": {
"default_model": {
"provider": "ollama",
"model": "llama3.2:3b"
},
"version": "2"
},
"vim_mode": true,
"autosave": "on_focus_change",
"buffer_font_family": "Berkeley Mono",
"buffer_font_fallbacks": [
"Apple Color Emoji",
"Segoe UI Emoji",
"Noto Color Emoji"
],
"buffer_font_weight": 400,
"buffer_font_size": 14,
"load_direnv": "shell_hook",
"ui_font_size": 16,
"theme": {
"mode": "system",
"light": "Kanagawa Wave",
"dark": "Kanagawa Wave"
},
"scrollbar": {
"show": "always"
},
"tab_bar": {
"show_nav_history_buttons": false
},
"tabs": {
"file_icons": true,
"git_status": true
},
"toolbar": {
"breadcrumbs": true,
"quick_actions": true
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"check": {
"command": "clippy"
}
}
}
},
"always_treat_brackets_as_autoclosed": true,
"git": {
"git_gutter": "tracked_files",
"inline_blame": {
"enabled": true,
"delay_ms": 200
}
},
"indent_guides": {
"enabled": true,
"coloring": "indent_aware",
"background_coloring": "disabled"
},
"inlay_hints": {
"enabled": true,
"show_type_hints": true,
"show_parameter_hints": true
},
"languages": {
"Python": {
"format_on_save": "on",
"formatter": {
"external": {
"command": "black",
"args": ["--quiet", "-"]
}
}
}
},
"preview_tabs": {
"enabled": true,
"enable_preview_from_file_finder": true,
"enable_preview_from_code_navigation": true
},
"show_whitespaces": "all",
"telemetry": {
"diagnostics": false,
"metrics": false
}
}