-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
45 lines (36 loc) · 1.12 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
unbind C-b
set -g prefix C-]
bind C-] send-prefix
# 設定ファイルのリロード
bind r source-file ~/.tmux.conf
# 256色表示
set-option -g default-terminal screen-256color
set -g terminal-overrides 'xterm:colors=256'
# | でペインを縦に分割
bind | split-window -h
# - でペインを横に分割
bind - split-window -v
# マウス操作
setw -g mode-mouse on
set -g mouse-select-window on
set -g mouse-select-pane on
set -g mouse-resize-pane on
# ステータスバーの色を設定
set -g status-fg white
set -g status-bg black
# ウィンドウリストの色を設定
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
# アクティブなウィンドウを目立たせる
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
# ペインボーダーの色を設定
set -g pane-border-fg green
set -g pane-border-bg black
# アクティブなペインを目立たせる
set-option -g pane-active-border-fg white
set-option -g pane-active-border-bg yellow
# ESCの効きを良くする
#set -s escape-time 0