Update Zed settings to latest format

This commit is contained in:
Ben Kreeger 2026-01-16 09:19:35 -06:00
parent b2cfc4e002
commit a474daf69f
Signed by: kreeger
GPG Key ID: D5CF8683D4BE4B50

View File

@ -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",
},
}