Multiple changes to my settings.json

This commit is contained in:
2026-03-17 16:37:32 +00:00
parent cb88caf52a
commit cc12bb9190

View File

@@ -10,7 +10,12 @@
"general": { "general": {
"preferredEditor": "neovim", "preferredEditor": "neovim",
"previewFeatures": true, "previewFeatures": true,
"enablePromptCompletion": true "enablePromptCompletion": true,
"sessionRetention": {
"warningAcknowledged": true,
"enabled": true,
"maxAge": "3650d"
}
}, },
"context": { "context": {
"fileName": [ "fileName": [
@@ -31,9 +36,38 @@
"tools": { "tools": {
"shell": { "shell": {
"showColor": true "showColor": true
} },
"enableHooks": true
}, },
"ui": { "ui": {
"showStatusInTitle": true "showStatusInTitle": true
},
"hooks": {
"Notification": [
{
"matcher": "",
"hooks": [
{
"name": "code-notify-notification",
"type": "command",
"command": "/opt/homebrew/lib/code-notify/core/notifier.sh notification gemini",
"description": "Desktop notification when input needed"
}
]
}
],
"AfterAgent": [
{
"matcher": "",
"hooks": [
{
"name": "code-notify-complete",
"type": "command",
"command": "/opt/homebrew/lib/code-notify/core/notifier.sh stop gemini",
"description": "Desktop notification when task complete"
}
]
}
]
} }
} }