-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
45 lines (35 loc) · 1.39 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
# Windowのインデックスを1から始める
set -g base-index 1
# Windowを閉じた時にインデックスを振り直す
set -g renumber-windows on
# Paneのインデックスを1から始める
setw -g pane-base-index 1
# ステータスバーの設定
set -g status-fg black
set -g status-bg cyan
set -g status-left-length 20
set -g status-left "S:#S W:#I P:#P"
set -g status-right "[%Y-%m-%d]"
set -g status-position top
# Windowリストの設定
set -g status-justify centre
setw -g window-status-format "#I:#W"
setw -g window-status-current-format "#I:#W"
setw -g window-status-current-style fg=white,underscore,bright
setw -g mode-keys vi
# Paneの設定
set -g pane-active-border-style fg=cyan,bg=default
# マウス操作の有効化
setw -g mouse on
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -e; send-keys -M'"
bind -n WheelDownPane select-pane -t= \; send-keys -M
# キーバインドの設定
bind r source-file ~/.tmux.conf \; display "Reloaded!"
bind k confirm kill-window
bind K confirm kill-server
# ドラッグでクリップボードにコピー
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
# スクロールバックの行数の設定
set -g history-limit 100000
# 256色対応
set-option -g default-terminal screen-256color