]>
Commit | Line | Data |
---|---|---|
05a65c3c BB |
1 | # Allow use of buffer |
2 | set-option -g default-command "reattach-to-user-namespace -l zsh" | |
b100af91 BB |
3 | |
4 | #Increase the scrollback | |
5 | set -g history-limit 5000 | |
6 | ||
7 | #Screen-like prefix. | |
8 | set -g prefix C-a | |
9 | bind-key C-a last-window | |
10 | ||
11 | #Better bindings for window split | |
12 | unbind % # Remove default binding since we’re replacing | |
13 | bind | split-window -h | |
14 | bind - split-window -v | |
15 | ||
16 | #Customize the status bars. | |
01e20652 BB |
17 | set -g status-bg cyan |
18 | set -g status-fg white | |
19 | set -g status-left-length 24 | |
20 | set -g status-left '#[fg=black]#[bg=white]#H-#S ' | |
21 | set-window-option -g window-status-current-bg red | |
22 | set-window-option -g window-status-current-fg colour232 | |
23 | set-window-option -g window-status-fg colour231 | |
24 | set -g status-right ' #[fg=black]#[bg=white]#(short-uptime)' | |
25 | set -g status-right-length 70 | |
ee6d2b11 | 26 | |
d5c1c217 BB |
27 | # Better powerline highlighting. |
28 | set-window-option -g window-status-activity-attr bold,blink,underscore | |
29 | ||
b100af91 BB |
30 | #Set Activity monitoring. |
31 | setw -g monitor-activity on | |
32 | set -g visual-activity on | |
33 | ||
34 | # Vi keys in copy mode. | |
35 | setw -g mode-keys vi | |
5813c634 BB |
36 | bind -r k run-shell 'tmux select-pane -U' |
37 | bind -r j run-shell 'tmux select-pane -D' | |
38 | bind -r h run-shell 'tmux select-pane -L' | |
39 | bind -r l run-shell 'tmux select-pane -R' | |
b100af91 BB |
40 | |
41 | # Set color mode. | |
a72dc03e | 42 | set -g default-terminal "xterm-256color" |
8b8f8e3b | 43 | set-option -ga terminal-overrides ",xterm-256color:Tc" |