dotfiles: initial scaffold for Coder devboxes
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>
This commit is contained in:
parent
7c985c5ecf
commit
f08f35b602
7 changed files with 183 additions and 0 deletions
17
home/.tmux.conf
Normal file
17
home/.tmux.conf
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue