-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtmux.conf
33 lines (25 loc) · 1.07 KB
/
tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# tmux.conf
# (C) 2016-2017 Maximilian Wende <[email protected]>
#
# This file is licensed under the Apache License 2.0. For more information,
# see the LICENSE file or visit: http://www.apache.org/licenses/LICENSE-2.0
# unbind -a
bind -n C-d detach
bind -n C-k confirm-before -p "This will kill the process running in this terminal. Are you sure? (y/N) " kill-server
set -g default-terminal "xterm-256color"
set -g status on
set -g status-position bottom
set -g status-interval 15
set -g status-style "fg=default,bg=default,none"
set -g status-left "#[fg=green,bold][ #S ] #[fg=default,none]Press #[fg=blue,bold]CTRL-D#[fg=default,none] to detach, #[fg=blue,bold]CTRL-K#[fg=default,none] to kill "
set -g status-left-length 70
set -g status-left-style ""
set -g window-status-format ""
set -g window-status-current-format ""
set -g window-status-separator ""
set -g status-right-length 7
set -g status-right " #(date +%H:%M) "
set -g status-right-style "fg=green,bold"
# Enable mouse scrolling support (requires tmux 2.1)
# Note: press ESC to return to normal mode
set -g mouse on