-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
51 lines (38 loc) · 1.08 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
setw -g utf8 on
set -g status-utf8 on
#ウィンドウで動作があるとステータスラインでハイライト
set-window-option -g monitor-activity on
# コピー、選択モードのキーバインドvi
set -g mode-keys vi
# プレフィックスキー C-t
unbind C-b
set-option -g prefix C-t
# 設定ファイル再読み込み r
bind r source-file ~/.tmux.conf
# 直前のウィンドウ t
bind C-t last-window
# 新ウィンドウ作成
bind c new-window
# ペイン終了
bind K kill-pane
# ペインの縦分割
bind 1 split-window -v
# ペインの横分割
bind 2 split-window -h
# ペインの移動
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# ペインのresize
bind H resize-pane -L 2
bind J resize-pane -D 2
bind K resize-pane -U 2
bind L resize-pane -R 2
# 文字色と背景色
set -g status-fg black
set -g status-bg white
# 現在のウィンドウの色
set-window-option -g window-status-current-fg white
set-window-option -g window-status-current-bg blue
set -g default-command "reattach-to-user-namespace -l ${SHELL}"