-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.tmux.conf
64 lines (51 loc) · 1.91 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
set-option -g prefix C-z
unbind-key C-b
# prefix + r で設定ファイルを再読み込み
bind r source-file ~/.tmux.conf\; display-message "Reload Config"
set -g default-terminal "screen-256color"
# マウスを使用してペイン移動
set -g mouse on
# コピーモードのキーバインドをviのように
set-window-option -g mode-keys vi
# 縦分割、横分割をviのキーバインドのように
unbind-key '%'
unbind-key '"'
bind s split-window -v
bind v split-window -h
# 分割画面への移動をviのキーバインドのように
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind b previous-window
unbind-key p
# 同時オペレーション
bind w setw synchronize-panes on
bind W setw synchronize-panes off
# ステータスバー
set -g status-interval 1
set -g status-left-length 20
set -g status-left '[#[fg=green]Session: #S #[fg=yellow]#I #[fg=cyan]#P#[default]] '
set -g status-right-length 90
set -g status-right ' #[fg=white]#(echo $LANG)#[default] < #[fg=cyan]Bat #{battery_icon} #{battery_percentage}#[default] < #[fg=blue]up #(pc-running-time)#[default] < #[fg=magenta](#(loadaverage)) Mem #(used-mem)%%#[default] < #[fg=red,bold]%y/%m/%d(%a)%H:%M:%S#[default] '
# 文字色と背景色
set -g status-fg white
set -g status-bg black
setw -g window-status-current-fg cyan
setw -g window-status-current-bg black
setw -g window-status-current-attr bold#,underscore
#===
# plugins
#===
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-sidebar'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'nhdaly/tmux-scroll-copy-mode'
set -g @continuum-restore 'on'
set -g @resurrect-strategy-vim 'session'
set -g @resurrect-processes 'ssh mosh'
run '~/.tmux/plugins/tpm/tpm'