nvim, i3 config and new zed settings

This commit is contained in:
2025-12-11 15:21:12 +01:00
parent 467588a604
commit 0d6cfd7781
24 changed files with 862 additions and 0 deletions
+105
View File
@@ -0,0 +1,105 @@
{
// Global Telemetry Settings
"telemetry": {
"diagnostics": false,
"metrics": 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
},
"scrollbar": {
"show": "never"
},
// Predictions
"show_edit_predictions": false,
// Language Settings
"languages": {
"Go": {
"show_edit_predictions": false
}
},
// 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
}
]
}
},
"agent": {
"default_profile": "write",
"default_model": {
"provider": "copilot_chat",
"model": "gpt-5-mini"
},
"model_parameters": []
},
// LLM Inline Prediction
"edit_predictions": {
"provider": "copilot"
},
// LSP Server Settings
"lsp": {
"texlab": {
"settings": {
"texlab": {
"build": {
"onSave": false
}
}
}
}
}
}