-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
33 lines (24 loc) · 1.11 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
# prefix を C-a にする
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
# 256 color を使う
set-option -g default-terminal "screen-256color"
# C-r で config を再読み込み
bind-key r source-file ~/.tmux.conf \; display-message "reload config"
# C-a, a で tmux 内のプログラムに C-a を送る
bind-key a send-prefix
# Copy モードで vim のキーバインドを使う
set-window-option -g mode-keys vi
# vim のキーバインドで選択してコピーする
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
# Enter でもコピーできるようにする
unbind -T copy-mode-vi Enter
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
# status line の設定
source-file ~/.dotfiles/tmux.d/status-line
# Ctrl-c でも新しい -window を開けるようにする(デフォルトはCtrl 離して c)
bind-key C-c new-window
# pbcopy できるようにする
set-option -g default-command "reattach-to-user-namespace -l ${SHELL}"