-
Notifications
You must be signed in to change notification settings - Fork 0
/
_tmux.conf
48 lines (36 loc) · 1.18 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
# prefix
set -g prefix C-a
unbind C-b
# C-a*2でtmuxにC-aを送る
bind C-a send-prefix
# set -g default-terminal "screen-256color"
# マウス操作を有効に
set-option -g mouse on
# クリップボードにコピー
set -s copy-command 'pbcopy'
# viのキーボードを使う
setw -g mode-keys vi
# キーストロークのディレイを減らす
set -sg escape-time 1
# リロード
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# 分割
bind | split-window -h
bind - split-window -v
# Control+[key]
bind -n C-l choose-session
bind -n C-n select-pane -t :.+
bind -n C-p select-pane -t :.-
# 画面自体をスクロール
# set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# キー
# ESCのディレイを500msから0に
set-option -g escape-time 0
# status bar
set-option -g pane-border-status top
set-option -g pane-border-format "#[fg=colour7,bg=colour99] #S[#P] #(~/dotfiles/.tmux/tmux-pane-border '#{pane_current_path}')"
set-option -g pane-border-style fg="colour99",bg="colour0"
set-option -g pane-active-border-style fg="colour057",bg="colour057"
set -g window-active-style "fg=colour250,bg=colour234"
# clear
bind k send-keys -R \; clear-history \; display "Clear!"