-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
106 lines (76 loc) · 3.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Prefixキーをctrl+zに変更する
set -g prefix C-z
# C-bのキーバインドを解除
unbind C-b
# | でペインを縦分割する
bind | split-window -h
# - でペインを縦分割する
bind - split-window -v
# Shift+Leftで左移動
bind -n S-left select-pane -L
# Shift+Downで下移動
bind -n S-down select-pane -D
# Shift+Upで上移動
bind -n S-up select-pane -U
# Shift+Rightで右移動
bind -n S-right select-pane -R
## viのキーバインドを使用する
setw -g mode-keys vi
## クリップボード共有を有効にする
set-option -g default-command "reattach-to-user-namespace -l zsh"
## コピーモードの操作をvi風に設定する
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
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"
# ステータスバーをトップに配置
set-option -g status-position top
# wifiとbatteryと日時を表示
set-option -g status-right '#{selected_input_source} 📡 #(~/bin/wifi) 🔋 #(~/bin/battery --tmux) [%Y-%m-%d(%a) %H:%M]'
#set-option -g status-right '#(~/bin/wifi) #{battery_status_bg} Batt: #{battery_icon} #{battery_percentage} #{battery_remain} | [%Y-%m-%d(%a) %H:%M]'
#1秒毎に描画し直す
set-option -g status-interval 1
#センタライズ(主にウィンドウ番号)
set-option -g status-justify centre
#左右のステータスバーの長さを決定する
set-option -g status-left-length 90
set-option -g status-right-length 90
#H => マシン名
#P => ペイン番号
# 最左に表示
set-option -g status-left '#H:[#P]'
# スクロールをONにする
set-window-option -g mouse on
# vimのカラースキーマを反映させるため
set-option -g default-terminal screen-256color
set -g terminal-overrides 'xterm:colors=256'
#------------------------------
#### COLOUR (Solarized dark)
#------------------------------
# default statusbar colors
set-option -g status-bg black #base02
set-option -g status-fg yellow #yellow
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg brightblue #base0
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim
# active window title colors
set-window-option -g window-status-current-fg brightred #orange
set-window-option -g window-status-current-bg default
#set-window-option -g window-status-current-attr bright
# pane border
set-option -g pane-border-fg black #base02
set-option -g pane-active-border-fg brightgreen #base01
# message text
set-option -g message-bg black #base02
set-option -g message-fg brightred #orange
# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour green #green
# bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red
#------------------------------
run-shell ~/bin/tmux-osx-selected-input-source/osx_selected_input_source.tmux