-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
53 lines (40 loc) · 1.57 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
# Prefix(Ctrl-b)をCtrl-jに変更する
unbind-key C-b
set-option -g prefix C-j
bind-key C-j send-prefix
# 複数の pane で入力する
bind S setw synchronize-panes on
bind s setw synchronize-panes off
# ペイン分割時に同一ディレクトリを開く
bind '"' split-window -c '#{pane_current_path}'
bind % split-window -h -c '#{pane_current_path}'
# vim のキーバインドでペインを移動する
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# ウィンドウ履歴の最大行数
set-option -g history-limit 5000
# コピーモードのキー操作をviライクにする
set-window-option -g mode-keys vi
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
# status-line
set-option -g pane-border-status bottom
set-option -g pane-border-format "#P #(tmux-pane-border #{pane_current_command} #{pane_pid})"
# status line の背景色を指定する。
set-option -g status-bg "colour238"
# status line の文字色を指定する。
set-option -g status-fg "colour255"
# [status-left][window-status][status-right]
# status line を一秒おきに更新
set-option -g status-interval 1
# right-status
set-window-option -g status-right "(%a) < %Y-%m-%d %H:%M:%S "
# window-status
set-window-option -g window-status-current-format "#[fg=colour255,bg=colour32,bold] #I: #W #[default]"
# esc の反応を早くする
set -s escape-time 10
# マウスホイールでスクロールする
set -g mouse on