install.sh (symlink home/* + merge-seed ~/.claude.json onboarding), gitconfig, bash_aliases, global gitignore, inputrc, tmux.conf. Golden owns tools+starship; this owns personal config. Secrets stay in Coder user-secrets. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
567 B
Bash
17 lines
567 B
Bash
# Sensible tmux defaults. (Install tmux in the devbox if you use it; harmless otherwise.)
|
|
set -g mouse on
|
|
set -g history-limit 50000
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
set -g renumber-windows on
|
|
set -sg escape-time 10
|
|
set -g default-terminal "tmux-256color"
|
|
set -ga terminal-overrides ",*256col*:Tc"
|
|
|
|
# splits keep the current path
|
|
bind '"' split-window -v -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
# reload
|
|
bind r source-file ~/.tmux.conf \; display "tmux.conf reloaded"
|