Update Zed settings to latest format
This commit is contained in:
parent
b2cfc4e002
commit
a474daf69f
@ -10,12 +10,12 @@
|
|||||||
"agent": {
|
"agent": {
|
||||||
"default_model": {
|
"default_model": {
|
||||||
"provider": "zed.dev",
|
"provider": "zed.dev",
|
||||||
"model": "claude-3-5-sonnet"
|
"model": "claude-3-5-sonnet",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
"vim_mode": true,
|
"vim_mode": true,
|
||||||
"features": {
|
"features": {
|
||||||
"edit_prediction_provider": "zed"
|
"edit_prediction_provider": "zed",
|
||||||
},
|
},
|
||||||
"auto_install_extensions": {
|
"auto_install_extensions": {
|
||||||
"html": true,
|
"html": true,
|
||||||
@ -31,29 +31,30 @@
|
|||||||
"docker-compose": true,
|
"docker-compose": true,
|
||||||
"env": true,
|
"env": true,
|
||||||
"ini": true,
|
"ini": true,
|
||||||
"ansible": true
|
"ansible": true,
|
||||||
},
|
},
|
||||||
"edit_predictions": {
|
"edit_predictions": {
|
||||||
"mode": "subtle"
|
"mode": "subtle",
|
||||||
},
|
},
|
||||||
"languages": {
|
"languages": {
|
||||||
"JavaScript": {
|
"JavaScript": {
|
||||||
"formatter": { "code_actions": { "source.fixAll.eslint": true } },
|
"formatter": [],
|
||||||
"code_actions_on_format": { "source.fixAll.eslint": true }
|
"code_actions_on_format": { "source.fixAll.eslint": true },
|
||||||
},
|
},
|
||||||
"HCL": {
|
"HCL": {
|
||||||
// Workarond to be able to format_on_save terragrunt files
|
// Workarond to be able to format_on_save terragrunt files
|
||||||
// https://github.com/gruntwork-io/terragrunt/issues/1037#issuecomment-2143442454
|
// https://github.com/gruntwork-io/terragrunt/issues/1037#issuecomment-2143442454
|
||||||
"format_on_save": {
|
"formatter": {
|
||||||
"external": {
|
"external": {
|
||||||
"command": "sh",
|
"command": "sh",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
"-c",
|
"-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": [
|
"file_scan_exclusions": [
|
||||||
"**/.terragrunt-cache",
|
"**/.terragrunt-cache",
|
||||||
@ -66,7 +67,7 @@
|
|||||||
"**/.DS_Store",
|
"**/.DS_Store",
|
||||||
"**/Thumbs.db",
|
"**/Thumbs.db",
|
||||||
"**/.classpath",
|
"**/.classpath",
|
||||||
"**/.settings"
|
"**/.settings",
|
||||||
],
|
],
|
||||||
"icon_theme": "Catppuccin Latte",
|
"icon_theme": "Catppuccin Latte",
|
||||||
"ui_font_size": 15,
|
"ui_font_size": 15,
|
||||||
@ -78,23 +79,23 @@
|
|||||||
"show_whitespaces": "boundary",
|
"show_whitespaces": "boundary",
|
||||||
"project_panel": {
|
"project_panel": {
|
||||||
"entry_spacing": "comfortable",
|
"entry_spacing": "comfortable",
|
||||||
"indent_size": 25
|
"indent_size": 25,
|
||||||
},
|
},
|
||||||
"collaboration_panel": { "button": false },
|
"collaboration_panel": { "button": false },
|
||||||
"git": {
|
"git": {
|
||||||
"inline_blame": { "enabled": false }
|
"inline_blame": { "enabled": false },
|
||||||
},
|
},
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"show_diagnostics": "errors",
|
"show_diagnostics": "errors",
|
||||||
"file_icons": true,
|
"file_icons": true,
|
||||||
"git_status": false
|
"git_status": false,
|
||||||
},
|
},
|
||||||
"terminal": {
|
"terminal": {
|
||||||
"line_height": { "custom": 1.8 }
|
"line_height": { "custom": 1.8 },
|
||||||
},
|
},
|
||||||
"theme": {
|
"theme": {
|
||||||
"mode": "system",
|
"mode": "system",
|
||||||
"light": "Catppuccin Latte",
|
"light": "Catppuccin Latte",
|
||||||
"dark": "Catppuccin Mocha"
|
"dark": "Catppuccin Mocha",
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user