tmux.conf - tmuxwm - A window manager utilising only tmux.
(HTM) git clone git://jay.scot/tmuxwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
tmux.conf (955B)
---
1
2 unbind C-b
3 set -g prefix C-space
4 set -g base-index 1
5 set -g mouse on
6
7 bind r source-file ~/.tmux.conf
8 bind \; command-prompt
9 bind h split-window -h
10 bind v split-window -v
11 bind TAB last-pane
12 bind -n WheelUpPane copy-mode -e
13 bind -n C-WheelUpPane copy-mode -e
14 bind -t vi-copy C-WheelUpPane halfpage-up
15 bind -t vi-copy C-WheelDownPane halfpage-down
16
17 set -g status-position top
18 set -g status-left ''
19 set -g status-right '#[fg=colour15]#[bg=colour235] #(date +%H:%M) '
20 set -g status-keys vi
21 set -g mode-keys vi
22 set -g status-bg colour234
23 set -g status-fg colour15
24 set -g display-time 1000
25
26 set -g renumber-windows on
27 set -g pane-border-fg colour234
28 set -g pane-active-border-fg colour234
29 set -g pane-border-bg colour234
30 set -g pane-active-border-bg colour234
31
32 set-window-option -g window-status-format '#[fg=colour238]#[bg=colour232] #T '
33 set-window-option -g window-status-current-format '#[fg=colour15]#[bg=colour235] #T '
34
35
36 # vim: ft=tmux