Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions dot_claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
"command": "~/.claude/statusline.sh",
"padding": 1
},
"hooks": {
"Notification": [
{
"hooks": [
{ "type": "command", "command": "afplay /System/Library/Sounds/Glass.aiff" }
]
}
]
},
"permissions": {
"allow": [
"Bash(awk:*)",
Expand Down
7 changes: 7 additions & 0 deletions dot_config/tmux/tmux.conf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ set -sa terminal-overrides ",xterm*:Tc"
#set -ag terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # colored underscores
#set -ag terminal-overrides ",alacritty:RGB"

# Claude Code: pass through OSC sequences (notifications, progress bar) and
# distinguish Shift+Enter from plain Enter so newline insertion works.
# https://code.claude.com/docs/en/terminal-config#configure-tmux
set -g allow-passthrough on
set -s extended-keys on
set -as terminal-features 'xterm*:extkeys'

# index from 1 instead of 0
set -g base-index 1
setw -g pane-base-index 1
Expand Down
Loading