-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux.conf
More file actions
47 lines (37 loc) · 1.16 KB
/
tmux.conf
File metadata and controls
47 lines (37 loc) · 1.16 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
setw -g mode-keys emacs
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
unbind -
bind-key _ delete-buffer
unbind '"'
unbind %
bind-key \ split-window -h -c "#{pane_current_path}"
bind-key - split-window -c "#{pane_current_path}"
bind-key c new-window -c "#{pane_current_path}"
bind-key k kill-pane
# Colors
color_orange="colour166"
color_purple="colour134"
color_green="colour076"
color_blue="colour39"
color_yellow="colour220"
color_red="colour160"
color_black="black"
color_white="white"
color_dark="$color_black"
color_light="$color_white"
color_session_text="$color_blue"
color_status_text="colour250"
color_main="$color_orange"
color_secondary="$color_purple"
set -g mode-style "fg=default,bg=$color_main"
# command line style
set -g message-style "fg=$color_main,bg=$color_dark"
# status line style
set -g status-style "fg=$color_status_text,bg=$color_dark"
setw -g window-status-format " #I:#W "
setw -g window-status-current-style "fg=$color_light,bg=$color_dark"
setw -g window-status-current-format "#[fg=$color_main,bg=$color_dark]#{?window_zoomed_flag,◼,▶} #[default]#I:#W "
# outline for active pane
setw -g pane-active-border-style "fg=$color_main"