forked from dicksonlabs/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux.conf
More file actions
81 lines (63 loc) · 2.3 KB
/
tmux.conf
File metadata and controls
81 lines (63 loc) · 2.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Changing the default prefix key:
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
#set-option -g prefix \ # Use ` for the magic key
#bind C-\ send-keys '\'
#bind '\' last-window
bind ' ' next-window
bind C-' ' next-window
# Colors
set-window-option -g window-status-current-bg cyan
# Shortcut to reload this file
bind r source-file ~/.tmux.conf
# Ideographic shortcuts for splitting windows
bind | split-window -h
bind - split-window -v
unbind %
# Support for 256 colors
set -g default-terminal "screen-256color"
# from https://github.com/aziz/dotfiles/blob/master/tmux.conf
## set status bar
set-option -g status-utf8 on
set-option -g status-bg colour11
set-option -g status-fg colour8
#set-option -g status-left '⣿'
#set-option -g status-right '⡇ #[bold]❐ #S:#I#[default] ⡇ #[bold]#(whoami) ● #H#[default] '
#set-option -g status-right '⡇ ❐ #S ⡇ ❖ #(rvm tools identifier) ⡇ #(whoami) ● #H '
set-option -g status-left ' #[bold]❐ #S#[default] ⡇'
set-option -g status-right '#[bold]#(whoami) ● #H#[default] '
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 colour166
set-window-option -g window-status-current-fg colour15
set-window-option -g window-status-current-attr bold
set-window-option -g window-status-current-format ' #I #W '
## tmux window titling for X
set-option -g set-titles on
set-option -g set-titles-string '[#I] #W'
set-window-option -g automatic-rename on
set-window-option -g window-status-format ' #I #W '
set-window-option -g window-status-attr bold
## starts windows at 1 not 0
# set-option -g base-index 1
## pane border and colors
set-option -g pane-active-border-fg yellow
set-option -g pane-border-fg white
## set window notifications
#set-option -g visual-activity on
#set-option -g visual-content on
#set-window-option -g monitor-activity on
#set-window-option -g automatic-rename off
# starts windows at 1 not 0
#set-option -g base-index 1
## enable mouse
#set-option -g mouse-select-pane on
#set-window-option -g mode-keys vi
#set-window-option -g mode-mouse on
# set-window-option -g monitor-activity off
# set-window-option -g monitor-content off
# set-option -g status-keys vi
# default is 2000 lines, make it 64k
set-option -g history-limit 65536