forked from lawrencesystems/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
82 lines (67 loc) · 2.42 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
78
79
80
81
82
# Make it use C-a, similar to screen..
unbind C-b
set -g prefix C-a
set -g default-terminal "screen-256color"
set -g terminal-overrides 'xterm:colors=256'
set -g history-limit 50000
# Tmux mouse mode
set-option -g mouse on
## Enable mouse with 'm' and disable with 'M'
unbind m
bind m \
set -g mouse on \;\
display 'Mouse: ON'
unbind M
bind M \
set -g mouse off \;\
display 'Mouse: OFF'
# THEME
set -g status-bg colour235
set -g status-fg yellow
#set-option -g status-attr dim
#set-window-option -g window-status-current-fg brightred #orange
#set-window-option -g window-status-current-bg colour236
#set-window-option -g window-status-current-attr bright
set -g status-interval 60
set -sg escape-time 1000
set-option -g base-index 1
setw -g aggressive-resize on
set -g status-justify centre
#set -g status-left '#[fg=green]#(whoami)@#H#[default]'
set -g status-left-length 70
set -g status-left "#[fg=yellow]#(ifconfig | grep 'inet ' | grep -v 127.0.0.1 | awk '{print \"Local \" $2}') #[fg=red]#(ifconfig tun0 | grep 'inet ' | awk '{print \"vpn \" $2}') #(ifconfig ppp0 | grep 'inet ' | awk '{print \"vpn \" $2}')"
# show session name, window & pane number, date and time on right side of status bar
set -g status-right-length 60
set -g status-right "#[fg=blue]#S #I:#P #[fg=yellow]:: %d %b %Y #[fg=green]:: %l:%M %p :: #(date -u | awk '{print $4}')::"
# set pane colors - hilight the active pane
#set-option -g pane-border-fg colour235 #base02
#set-option -g pane-active-border-fg colour240 #base01
# Make the current window the first window
#bind T swap-window -t 1
## ペインの移動をprefixなしで行う(Shift + 矢印キー)
bind -n S-left select-pane -L
bind -n S-down select-pane -D
bind -n S-up select-pane -U
bind -n S-right select-pane -R
#bind ` copy-mode
#bind p paste-buffer
# Resize window with alt arrow keys
bind-key -n C-S-Up resize-pane -U 10
bind-key -n C-S-Down resize-pane -D 10
bind-key -n C-S-Left resize-pane -L 10
bind-key -n C-S-Right resize-pane -R 10
# Rename window with ctrl a r
#bind-key -r r command-prompt 'rename-window %%'
# Reorder windows
#bind R \
# move-window -r\; \
# display-message "Windows reordered..."
## pane border and colors
#set-option -g pane-active-border-fg yellow
#set-option -g pane-border-fg white
## Escキーの遅延を解消
set -s escape-time 0
# vi mode
set-window-option -g mode-keys vi
# clear
bind -n C-k clear-history