-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
59 lines (45 loc) · 2.35 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
unbind C-b #set leader key to c-a
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind \ split-window -h
bind - split-window -v
unbind '"'
unbind %
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
set -g base-index 1 #set base window index to 1
set-option -g allow-rename off #Window names will not change
set -g history-limit 10000 #set scrollback history to 10000
set -g default-terminal "screen-256color" #display things in 256 colors
set-option -g pane-border-fg colour235 #set pane colors
set-option -g pane-active-border-fg colour45
set-option -g message-bg blue #colorize status messages
set-option -g message-fg white
set-option -g status on #turn status bar on
#set-option -g status-utf8 on #set utf-8 for status bar
set -g status-interval 5 #set update frequency (default:15s)
set -g status-justify centre #center window list for clarity
setw -g monitor-activity on #visual notif. of activity in other windows
set -g visual-activity on
#set-option -g status-bg black #set color for status bar
#set-option -g status-fg white
#set-option -g status-attr dim
set-option -g status-bg colour236 #set color for status bar
set-option -g status-fg colour231
#set-option -g status-attr dim
#set-window-option -g window-status-fg brightblue #set window list colors
#set-window-option -g window-status-bg black
set-window-option -g window-status-fg colour45 #set window list colors
set-window-option -g window-status-bg colour236
#set-window-option -g window-status-attr dim
#set-window-option -g window-status-current-fg brightred
#set-window-option -g window-status-current-bg black
#set-window-option -g window-status-current-attr bright
set-window-option -g window-status-current-fg white
set-window-option -g window-status-current-bg colour8
set-window-option -g window-status-current-attr bold
#set-window-option -g window-status-current-attr bright
# show host name and IP address on left side of status bar
#set -g status-left-length 70
#set -g status-left "#[fg=green]: #h : #[fg=brightblue]#(curl icanhazip.com) #[fg=yellow]#(ifconfig en0 | grep 'inet ' | awk '{print \"en0 \" $2}') #(ifconfig en1 | grep 'inet ' | awk '{print \"en1 \" $2}') #[fg=red]#(ifconfig tun0 | grep 'inet ' | awk '{print \"vpn \" $2}') "