-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
52 lines (37 loc) · 1.47 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
#set -g default-terminal "screen-256color"
#source-file ~/.tmuxcolors.conf
# Reload config (for playing with tmux.conf)
bind r source-file ~/.tmux.conf
# Setting the delay between prefix and command
set -sg escape-time 1
# History
set -g history-limit 10000
# '0' is at the wrong end of the keyboard
set -g base-index 1
# Just click it
set-option -g mouse-select-pane on
set-option -g mouse-select-window on
set-option -g mouse-resize-pane on
# Don't lose track of SSH_AGENT etc. from parent environment.
set -g update-environment -r
## set status bar
set-option -g status-bg colour237
set-option -g status-fg colour255
set-option -g status-left '⣿'
set-option -g status-right '⡇ #[bold]❐ #S:#I#[default] ⡇ #[bold]#(whoami) ⡇ #H#[default] ⡇ #[fg=red]☃ '
set-option -g status-right-length 60
set-option -g status-left-length 60
## highlight active window
set-window-option -g window-status-current-bg colour228 # Some nice yellow
set-window-option -g window-status-current-fg black
set-window-option -g window-status-current-attr bold
set-window-option -g window-status-current-format ' [#W] '
## Stuff I haven't played with yet but might find interestng.
#setw -g window-status-bg black
#setw -g window-status-alert-attr default
#setw -g window-status-alert-fg yellow
#set-option -g set-titles on
#set-option -g set-titles-string '#H:#S.#I.#P #W #T' # window number,program name,active (or not)
#set-option -g visual-bell on
#setw -g monitor-activity on
set -g visual-activity on