mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-07-21 16:00:55 +00:00
updated a bunch
This commit is contained in:
+58
-90
@@ -1,105 +1,73 @@
|
||||
// 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)
|
||||
{
|
||||
// Global Telemetry Settings
|
||||
"telemetry": {
|
||||
"diagnostics": false,
|
||||
"metrics": false
|
||||
"go_to_definition_fallback": "find_all_references",
|
||||
"linked_edits": true,
|
||||
"toolbar": {
|
||||
"agent_review": false
|
||||
},
|
||||
|
||||
// Behaviour
|
||||
"tab_size": 2,
|
||||
"vim_mode": true,
|
||||
"format_on_save": "off",
|
||||
"autosave": "on_focus_change",
|
||||
|
||||
// Theme / Visual Settings
|
||||
"icon_theme": {
|
||||
"mode": "dark",
|
||||
"light": "Zed (Default)",
|
||||
"dark": "Zed (Default)"
|
||||
},
|
||||
"theme": {
|
||||
"mode": "dark",
|
||||
"light": "Gruvbox Light",
|
||||
"dark": "Gruvbox Dark Hard"
|
||||
},
|
||||
"ui_font_size": 16.0,
|
||||
"buffer_font_size": 13.0,
|
||||
|
||||
"soft_wrap": "editor_width",
|
||||
|
||||
// Indentation
|
||||
"indent_guides": {
|
||||
"enabled": true,
|
||||
"coloring": "indent_aware"
|
||||
},
|
||||
|
||||
// Relative line numbers (vim)
|
||||
"relative_line_numbers": "enabled",
|
||||
|
||||
// Further Visual Settings
|
||||
"tab_bar": {
|
||||
"show": true
|
||||
"minimap": {
|
||||
"show": "never"
|
||||
},
|
||||
"scrollbar": {
|
||||
"show": "never"
|
||||
},
|
||||
|
||||
// Predictions
|
||||
"show_edit_predictions": false,
|
||||
|
||||
// Language Settings
|
||||
"languages": {
|
||||
"Go": {
|
||||
"show_edit_predictions": false
|
||||
}
|
||||
"relative_line_numbers": "enabled",
|
||||
"tab_size": 2,
|
||||
"project_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
|
||||
// File syntax highlight
|
||||
"file_types": {
|
||||
"Dockerfile": ["Dockerfile", "Dockerfile.*"],
|
||||
"JSON": ["json", "jsonc", "*.code-snippets"],
|
||||
},
|
||||
|
||||
// Agent / LLM Settings
|
||||
"language_models": {
|
||||
"ollama": {
|
||||
"api_url": "http://localhost:11434",
|
||||
"available_models": [
|
||||
{
|
||||
"name": "qwen2.5-coder:14b-instruct-q4_0",
|
||||
"display_name": "Qwen2.5 Coder 14B Instruct (Q4_0)",
|
||||
"max_tokens": 32768,
|
||||
"supports_tools": false,
|
||||
"supports_thinking": false
|
||||
}
|
||||
]
|
||||
}
|
||||
"outline_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
"collaboration_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
"agent": {
|
||||
"default_profile": "write",
|
||||
"default_model": {
|
||||
"provider": "copilot_chat",
|
||||
"model": "gpt-5-mini"
|
||||
},
|
||||
"dock": "right",
|
||||
"favorite_models": [],
|
||||
"model_parameters": []
|
||||
},
|
||||
|
||||
// LLM Inline Prediction
|
||||
"edit_predictions": {
|
||||
"provider": "copilot"
|
||||
"git_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
|
||||
// LSP Server Settings
|
||||
"lsp": {
|
||||
"texlab": {
|
||||
"settings": {
|
||||
"texlab": {
|
||||
"build": {
|
||||
"onSave": false
|
||||
}
|
||||
}
|
||||
}
|
||||
"soft_wrap": "editor_width",
|
||||
"format_on_save": "off",
|
||||
"autosave": "on_focus_change",
|
||||
"inlay_hints": {
|
||||
"enabled": false,
|
||||
"show_value_hints": true,
|
||||
"show_type_hints": true,
|
||||
"show_parameter_hints": true,
|
||||
"show_other_hints": true,
|
||||
"show_background": false,
|
||||
"edit_debounce_ms": 700,
|
||||
"scroll_debounce_ms": 50,
|
||||
"toggle_on_modifiers_press": {
|
||||
"control": false,
|
||||
"alt": false,
|
||||
"shift": false,
|
||||
"platform": false,
|
||||
"function": false
|
||||
}
|
||||
},
|
||||
"telemetry": {
|
||||
"diagnostics": false,
|
||||
"metrics": false
|
||||
},
|
||||
"vim_mode": true,
|
||||
"icon_theme": "Zed (Default)",
|
||||
"ui_font_size": 15.0,
|
||||
"buffer_font_size": 15,
|
||||
"theme": {
|
||||
"mode": "dark",
|
||||
"light": "Gruvbox Light",
|
||||
"dark": "Ayu Dark"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user