-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
77 lines (69 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
set-window-option -g mode-keys vi
set-window-option -g automatic-rename off
# KeyBindings
set-window-option -g mode-keys vi
unbind C-b
set-option -g prefix C-j
bind C-c new-window
bind C-j last-window
bind s split-window
bind | split-window -h
bind C-k next-window
bind C-h previous-window
bind l list-window
bind [ copy-mode
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key T swap-window -t 0
bind-key C-h resize-pane -L 5
bind-key C-l resize-pane -R 5
bind-key C-j resize-pane -D 5
bind-key C-k resize-pane -U 5
bind A command-prompt 'rename-window %%'
# # STATUS LINE
# set-option -g status-fg black
# set-option -g status-bg colour252
# set-option -g status-attr default
# set-option -g status-interval 1
# set -g status-left '#[fg=black,bg=blue,bold] @#H #[default]'
# set -g status-right '#[fg=black,bg=blue,bold] [%Y-%m-%d(%a) %H:%M:%S]#[default]'
#
# # default window title colors
# set-window-option -g window-status-fg colour244
# set-window-option -g window-status-bg default
#
# set-window-option -g window-status-attr bold
#
# # active window title colors
# set-window-option -g window-status-current-attr bold,underscore
# set-window-option -g window-status-current-fg colour230
# set-window-option -g window-status-current-bg colour166
#
# # pane border
# set-option -g pane-active-border-bg colour166 #cyan
# set-option -g pane-active-border-fg colour166 #cyan
# set-option -g pane-border-bg white
# set-option -g pane-border-fg white
#
# # message text
# set-option -g message-bg colour235 #base02
# set-option -g message-fg colour166 #orange
#
# # pane number display
# set-option -g display-panes-active-colour colour33 #blue
# set-option -g display-panes-colour colour166 #orange
#
# # clock
# set-window-option -g clock-mode-colour colour64 #green
set -g default-terminal "screen-256color"
# STATUS LINE (w/ powerline)
set-option -g status on
set-option -g status-interval 1
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g status-left "#($DOTFILES/.tmux/src/tmux-powerline/powerline.sh left)"
set-option -g status-right "#($DOTFILES/.tmux/src/tmux-powerline/powerline.sh right)"
set-option -g status-bg white