-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
95 lines (70 loc) · 2.83 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
83
84
85
86
87
88
89
90
91
92
93
94
95
# prefixキーをC-zに変更する
set -g prefix C-z
# キーストロークのディレイを減らす
set -sg escape-time 1
# ウィンドウ履歴の最大行数
set-option -g history-limit 5000
# ステータスバーをトップに配置する
set-option -g status-position top
# 左右のステータスバーの長さを決定する
set-option -g status-left-length 90
set-option -g status-right-length 90
# #H => マシン名
# #P => ペイン番号
# 最左に表示
set-option -g status-left '[#P]'
# 最右に表示
set-option -g status-right '[%Y-%m-%d(%a) %H:%M]'
# ステータスバーを1秒毎に描画し直す
set-option -g status-interval 1
# センタライズ(主にウィンドウ番号など)
set-option -g status-justify centre
# Vi キーバインド
set-window-option -g mode-keys vi
# Prefix+v でコピーモード開始
bind-key v copy-mode \; display "Copy mode!"
# Prefix+r で設定をリロード
bind-key r source-file ~/.tmux.conf \; display "Reloaded!"
# Vi モード中に Ctrl-a で行頭に(Emacs ライク)
bind-key -T copy-mode-vi C-a send-keys -X start-of-line
# Vi モード中に Ctrl-e で行末に(Emacs ライク)
bind-key -T copy-mode-vi C-e send-keys -X end-of-line
# | でペインを縦に分割する
bind | split-window -h
# - でペインを横に分割する
bind - split-window -v
# 256色端末を使用する
set -g default-terminal "screen-256color"
# ペインボーダーの色を設定する
set -g pane-border-style fg="green"
set -g pane-border-style bg="black"
# アクティブなウィンドウを目立たせる
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
# 下記の設定をしておいたほうがEscの効きがいいらしい
set -s escape-time 0
# vi のキーバインドでペインを移動する
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# ペインサイズを上下左右(Prefix+JKHL)に変更
# Prefix+J,J,J,J,...と連打してリサイズ可能
bind-key -r < resize-pane -L 3
bind-key -r [ resize-pane -D 3
bind-key -r ] resize-pane -U 3
bind-key -r > resize-pane -R 3
# ペインボーダーの色を設定する
set -g pane-border-fg green
set -g pane-border-bg black
# アクティブなペインを目立たせる
set -g pane-active-border-fg white
set -g pane-active-border-bg yellow
# vi のヤンクとクリップボードを共有する
set-option -g default-command "reattach-to-user-namespace -l zsh"
# コピーモードの操作を vi 風に設定する
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
unbind -T copy-mode-vi Enter
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"