From a474daf69f09e76d17e38b26ce6fcbadb25fe5ef Mon Sep 17 00:00:00 2001 From: Ben Kreeger Date: Fri, 16 Jan 2026 09:19:35 -0600 Subject: [PATCH] Update Zed settings to latest format --- zed/settings.json | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/zed/settings.json b/zed/settings.json index a1e8b61..f598c54 100644 --- a/zed/settings.json +++ b/zed/settings.json @@ -10,12 +10,12 @@ "agent": { "default_model": { "provider": "zed.dev", - "model": "claude-3-5-sonnet" - } + "model": "claude-3-5-sonnet", + }, }, "vim_mode": true, "features": { - "edit_prediction_provider": "zed" + "edit_prediction_provider": "zed", }, "auto_install_extensions": { "html": true, @@ -31,29 +31,30 @@ "docker-compose": true, "env": true, "ini": true, - "ansible": true + "ansible": true, }, "edit_predictions": { - "mode": "subtle" + "mode": "subtle", }, "languages": { "JavaScript": { - "formatter": { "code_actions": { "source.fixAll.eslint": true } }, - "code_actions_on_format": { "source.fixAll.eslint": true } + "formatter": [], + "code_actions_on_format": { "source.fixAll.eslint": true }, }, "HCL": { // Workarond to be able to format_on_save terragrunt files // https://github.com/gruntwork-io/terragrunt/issues/1037#issuecomment-2143442454 - "format_on_save": { + "formatter": { "external": { "command": "sh", "arguments": [ "-c", - "TMPFILE=$(mktemp) && cat - > $TMPFILE && terragrunt hclfmt --terragrunt-hclfmt-file $TMPFILE && cat $TMPFILE && rm $TMPFILE" - ] - } - } - } + "TMPFILE=$(mktemp) && cat - > $TMPFILE && terragrunt hclfmt --terragrunt-hclfmt-file $TMPFILE && cat $TMPFILE && rm $TMPFILE", + ], + }, + }, + "format_on_save": "on", + }, }, "file_scan_exclusions": [ "**/.terragrunt-cache", @@ -66,7 +67,7 @@ "**/.DS_Store", "**/Thumbs.db", "**/.classpath", - "**/.settings" + "**/.settings", ], "icon_theme": "Catppuccin Latte", "ui_font_size": 15, @@ -78,23 +79,23 @@ "show_whitespaces": "boundary", "project_panel": { "entry_spacing": "comfortable", - "indent_size": 25 + "indent_size": 25, }, "collaboration_panel": { "button": false }, "git": { - "inline_blame": { "enabled": false } + "inline_blame": { "enabled": false }, }, "tabs": { "show_diagnostics": "errors", "file_icons": true, - "git_status": false + "git_status": false, }, "terminal": { - "line_height": { "custom": 1.8 } + "line_height": { "custom": 1.8 }, }, "theme": { "mode": "system", "light": "Catppuccin Latte", - "dark": "Catppuccin Mocha" - } + "dark": "Catppuccin Mocha", + }, }