-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
63 lines (49 loc) · 1.36 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
#source-file ~/.tmux.reset.conf
# 256色を有効
set -g default-terminal "screen-256color"
set-option -g xterm-keys on
set -g set-titles on
set -g set-titles-string '#S:#W'
# マウスで操作できる
#set -g mode-mouse on
#set -g mouse-resize-pane on
set -g mouse on
# デフォルトキーを Ctrl + a に変更
unbind C-b
set -g prefix C-a
bind C-a send-prefix
# パネル移動
# Alt + Shift + ← → ↑ ↓
bind -n M-S-down select-pane -D
bind -n M-S-up select-pane -U
bind -n M-S-right select-pane -R
bind -n M-S-left select-pane -L
# ウインドウ移動
# Shift + ← →
bind -n S-left prev
bind -n S-right next
# フール
# Alt + shit + z
bind -n M-Z resize-pane -Z
# ウインドウを自動的にリネーム
set -g renumber-windows on
# メッセージを1秒表示
set -g display-time 1000
# パネルを1からスタート
set -g base-index 1
set -g pane-base-index 1
# window移動
bind -n M-'!' select-window -t 1
bind -n M-'"' select-window -t 2
bind -n M-'#' select-window -t 3
bind -n M-'$' select-window -t 4
bind -n M-'%' select-window -t 5
bind -n M-'&' select-window -t 6
bind -n "M-'" select-window -t 7
bind -n M-'(' select-window -t 8
bind -n M-')' select-window -t 9
bind -n M-'~' select-window -t 10
# ユニコードウィンドウ名
#set-window-option -g utf8 on
set-window-option -g automatic-rename off
source ~/.tmuxline.conf