]> 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:

enable mouse
[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 mouse on
13
14 set-option -g aggressive-resize on
15
16 # if a session is killed, kill the client
17 set-option -g detach-on-destroy on
18
19 set-option -g set-titles on
20 set-option -g set-titles-string "#{?#{==:#{pane_title},#{host_short}},#h:#W,#T}"
21
22 bind-key '\' confirm-before -p "kill-session #S? (y/n)" kill-session
23
24 bind-key = set-option synchronize-panes
25
26 set-environment -g SSH_AUTH_SOCK $VARDIR/ssh/persistent-ssh-auth.sock
27
28 bind-key -r -T root C-Up    select-pane -U
29 bind-key -r -T root C-Down  select-pane -D
30 bind-key -r -T root C-Left  select-pane -L
31 bind-key -r -T root C-Right select-pane -R