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": {
"preferredEditor": "neovim",
"previewFeatures": true,
"enablePromptCompletion": true
"enablePromptCompletion": true,
"sessionRetention": {
"warningAcknowledged": true,
"enabled": true,
"maxAge": "3650d"
}
},
"context": {
"fileName": [
@@ -31,9 +36,38 @@
"tools": {
"shell": {
"showColor": true
}
},
"enableHooks": true
},
"ui": {
"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"
}
]
}
]
}
}