]> git.madduck.net Git - etc/tmux.git/blob - .tmux.conf

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

switch to persistent SSH auth sock
[etc/tmux.git] / .tmux.conf
1 set-option -g prefix C-a
2 unbind-key C-b
3 bind-key C-a send-prefix
4
5 # number windows from 1 for it makes shortcuts 0–9 more intuitive
6 set-option -g base-index 1
7 bind-key 0 select-window -t :=10
8
9 set-option -g status-bg black
10 set-option -g status-fg white
11
12 set-option -g aggressive-resize on
13
14 # if a session is killed, kill the client
15 set-option -g detach-on-destroy on
16
17 set-option -g set-titles on
18 set-option -g set-titles-string "#{?#{==:#{pane_title},#{host_short}},#h:#W,#T}"
19
20 bind-key '\' confirm-before -p "kill-session #S? (y/n)" kill-session
21
22 bind-key = set-option synchronize-panes
23
24 set-environment -g SSH_AUTH_SOCK $VARDIR/ssh/persistent-ssh-auth.sock