-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
63 lines (47 loc) · 1.92 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
#---------------------------------------------------------------------------
# .tmux.conf
#---------------------------------------------------------------------------
# prefix を Ctrl-t に変更(デフォルトは C-b )
set -g prefix C-t
unbind-key C-b
bind-key C-t send-prefix
# 設定ファイルの再読み込みショートカット
bind-key r source-file ~/.tmux.conf \; display-message 'Reload tmux Config!!'
# Window 分割を VIM キーバインドに
bind-key s split-window -v -c '#{pane_current_path}'
bind-key v split-window -h -c '#{pane_current_path}'
# Window 作成・分割時にパスを引継ぐ
bind-key c new-window -c '#{pane_current_path}'
# ペイン移動を VIM キーバインドに
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
# viのキーバインドを使用
setw -g mode-keys vi
# Esc入力時の待ち時間をキャンセル
set -s escape-time 0
set -g mouse on
# Mac用設定
set-option -g default-terminal 'screen-256color'
set -g terminal-overrides 'xterm:colors=256'
#---------------------------------------------------------------------------
# status line
#---------------------------------------------------------------------------
# status line を下部に表示する
set -g status-position bottom
# window-status
# アクティブウィンドウを目立たせる
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
#---------------------------------------------------------------------------
# Tmux Plugin Manager
#---------------------------------------------------------------------------
set -g @plugins 'tmux-plugins/tpm'
set -g @plugins 'tmux-plugins/tmux-resurrect'
set -g @plugins 'tmux-plugins/tmux-continuum'
# 'tmux-plugins/tmux-continuum' パラメータ設定
set -g @continuum-save-interval '60' # minutes
run-shell '~/.tmux/plugins/tpm/tpm'
# vim: foldmethod=marker