diff options
Diffstat (limited to 'scripts/install/opensim.tmux.conf')
-rw-r--r-- | scripts/install/opensim.tmux.conf | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/scripts/install/opensim.tmux.conf b/scripts/install/opensim.tmux.conf new file mode 100644 index 0000000..ea342a2 --- /dev/null +++ b/scripts/install/opensim.tmux.conf | |||
@@ -0,0 +1,52 @@ | |||
1 | # Tmux has a habit of changing what these options are for each version, so this is a bit of a mess. | ||
2 | |||
3 | set-option -g prefix C-a | ||
4 | unbind-key C-b | ||
5 | bind-key C-a send-prefix | ||
6 | |||
7 | # r reloads the configuration, handy | ||
8 | bind r source-file ~/.tmux.conf | ||
9 | |||
10 | unbind % # Remove default binding since we’re replacing them. | ||
11 | bind | split-window -h | ||
12 | bind - split-window -v | ||
13 | |||
14 | set-option -g bell-action any | ||
15 | set-option -g bell-on-alert on | ||
16 | |||
17 | set-option -g history-limit 100000 | ||
18 | |||
19 | # These three wont work under Ubuntu 16.04. | ||
20 | set-option -g mouse-resize-pane on | ||
21 | set-option -g mouse-select-pane on | ||
22 | set-option -g mouse-select-window on | ||
23 | set-option -g mouse-utf8 on | ||
24 | |||
25 | #set-option -g set-remain-on-exit on | ||
26 | set-option -g set-titles on | ||
27 | set-option -g set-titles-string '#W' | ||
28 | |||
29 | set-option -g status-interval 1 | ||
30 | set-option -g status-justify centre | ||
31 | set-option -g status-utf8 on | ||
32 | |||
33 | set-option -g status-left-length 80 | ||
34 | set-option -g status-left '[#H #S #F]' | ||
35 | set-option -g status-right-length 80 | ||
36 | set-option -g status-right '%F #(uptime)'<-----># &F is ISO date, uptime starts with the current time, and ends with the load average. B-) | ||
37 | |||
38 | set-option -g visual-activity on | ||
39 | set-option -g visual-content on | ||
40 | set-option -g visual-silence on | ||
41 | |||
42 | set-option -gw clock-mode-style 24 | ||
43 | # This wont work under Ubuntu 16.04. | ||
44 | set-option -gw mode-mouse on | ||
45 | # Instead do this (also defaults to turning on the above three mouse things) - | ||
46 | #set-option -gw mouse on | ||
47 | |||
48 | # Highlight active window | ||
49 | set-option -gw window-status-current-bg red | ||
50 | |||
51 | # Set window notifications | ||
52 | set-option -gw monitor-activity on | ||