-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
38 lines (27 loc) · 1.15 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
# TPMの自動インストール
if "not test -d ~/.tmux/plugins/tpm/" "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm'"
# prefixキーをM-qに変更する
set -g prefix M-q
# C-bのキーバインドを解除する
unbind C-b
# M-q*2でtmux内のプログラムにM-qを送る
bind M-q send-prefix
# | でペインを縦に分割する
bind | split-window -h
# - でペインを横に分割する
bind - split-window -v
# コピーモードのキーバインドをEmacs風に
set-window-option -g mode-keys emacs
# Prefixが押されているかどうかをステータスラインに表示
set-option -g status-left '#[fg=cyan,bg=#303030]#{?client_prefix,#[reverse],} #H #[default]'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'