This commit is contained in:
2025-09-23 13:19:48 +00:00
parent a04a4abef6
commit dd3753fab4
170 changed files with 907 additions and 1715 deletions

151
config/zed/settings.json Normal file
View File

@@ -0,0 +1,151 @@
// 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)
{
// #############################################
// ## Theming ##
// #############################################
"telemetry": {
"diagnostics": false,
"metrics": false
},
"ssh_connections": [
{
"host": "desktop",
"projects": [
{
"paths": [
"/home/menno/.dotfiles"
]
},
{
"paths": [
"/mnt/services/dashy"
]
}
],
"nickname": "Menno's Desktop PC"
},
{
"host": "salt.dev",
"projects": []
},
{
"host": "salt.dev",
"username": "salt",
"projects": [
{
"paths": [
"/home/salt/releases/current"
]
}
]
}
],
"icon_theme": "Catppuccin Macchiato",
"ui_font_size": 16,
"buffer_font_size": 16,
"minimap": {
"show": "always",
"thumb": "hover",
"current_line_highlight": "all",
"display_in": "active_editor"
},
"theme": {
"mode": "system",
"light": "Catppuccin Latte",
"dark": "Catppuccin Macchiato"
},
"tabs": {
"close_position": "right",
"file_icons": true,
"git_status": true,
"activate_on_close": "history",
"show_close_button": "hover",
"show_diagnostics": "errors"
},
"toolbar": {
"code_actions": true
},
// #############################################
// ## Preferences ##
// #############################################
"restore_on_startup": "last_session",
"auto_update": true,
"base_keymap": "VSCode",
"cursor_shape": "bar",
"hide_mouse": "on_typing",
"on_last_window_closed": "quit_app",
"ensure_final_newline_on_save": true,
"format_on_save": "prettier",
"tab_size": 2,
"inlay_hints": {
"enabled": true,
"show_parameter_hints": true
},
// #############################################
// ## AI Stuff ##
// #############################################
"agent": {
"play_sound_when_agent_done": false,
"default_profile": "write",
"model_parameters": [],
"default_model": {
"provider": "copilot_chat",
"model": "claude-sonnet-4"
}
},
"edit_predictions": {
"mode": "subtle",
"enabled_in_text_threads": true,
"disabled_globs": [
"**/.env*",
"**/*.pem",
"**/*.key",
"**/*.cert",
"**/*.crt",
"**/.dev.vars",
"**/secrets/**"
]
},
// #############################################
// ## Extensions ##
// #############################################
"auto_install_extensions": {
"dockerfile": true,
"html": true,
"yaml": true,
"docker-compose": true,
"golang": true
},
// #############################################
// ## Languages ##
// #############################################
"languages": {
"PHP": {
"language_servers": ["phptools"]
},
"Dart": {
"code_actions_on_format": {
"source.organizeImports": true
}
}
},
"lsp": {
"phptools": {
"initialization_options": {
"0": "<YOUR LICENSE KEY>"
}
}
}
}