-
Notifications
You must be signed in to change notification settings - Fork 25
/
.tmux.conf
101 lines (78 loc) · 3.74 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
## 기본 설정
# tmux가 내부적으로 사용할 터미널 타입 지정
set -g default-terminal "xterm-256color-italic"
set-option -ga terminal-overrides ",tmux-256color-italic:Tc,xterm-256color-italic:Tc"
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g default-shell $SHELL # 기본 셸 사용
## 윈도우 설정
set -g base-index 1
# 첫번째 윈도우 번호를 0 이 아니라 1로 시작하게 한다
# (Alacritty와의 조합을 위해 1부터 시작하게 설정했다)
## 키 설정
set -sg escape-time 0
set-option -gw xterm-keys on # xterm 터미널 특수 키 시퀀스를 활성화한다(vim 사용시 특수 키 시퀀스의 정확한 동작을 위해)
bind r source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
# 설정파일을 다시 읽어들인다
### C-b 대신 C-q 사용
unbind C-b
set -g prefix C-q
### vim 스타일 pane 이동
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
### 윈도우 조작
# 이 설정이 있어야 윈도우를 닫고 나서 윈도우 넘버 공백이 생기지 않는다
set-option -g renumber-windows on
# 새 윈도우를 생성할 때 현재 pane의 경로를 사용한다
bind c new-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"
# 윈도우 리사이즈
bind-key J resize-pane -D
bind-key K resize-pane -U
bind-key H resize-pane -L
bind-key L resize-pane -R
bind-key X kill-pane # kill-pane을 쓰면 window를 닫기 전에 confirm을 물어보지 않는다
# 윈도우 이동
bind-key C-h swap-window -t -1\; select-window -t -1
bind-key C-l swap-window -t +1\; select-window -t +1
### 윈도우 리스트
# 현재 윈도우 상태
# ~/dotfiles/bin/simple-pwd
set-window-option -g window-status-current-format '#{window_index}:#{pane_current_command} #[fg=blue,bold]#(pwd="#{pane_current_path}"; simple-pwd ${pwd})'
# set-window-option -g window-status-current-format '#{window_index}:#{pane_current_command} #[fg=blue,bold]#(pwd="#{pane_current_path}"; if [[ $HOME == ${pwd} ]]; then echo ~; else echo ${pwd####*/}; fi)'
# 다른 윈도우 상태
set-window-option -g window-status-format '#{window_index}#[fg=colour244]:#{pane_current_command} #[fg=colour244]#(pwd="#{pane_current_path}"; simple-pwd ${pwd})'
## 화면 보여주기 설정
### 커서 모양
# tmux 에서 vim을 사용할 때 모드별로 커서 모양을 다르게 설정한다
# https://gist.github.com/andyfowler/1195581?permalink_comment_id=2852367#gistcomment-2852367
set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q'
### 최하단 status 표시줄
# https://arcolinux.com/everything-you-need-to-know-about-tmux-status-bar/
set -g status-bg black
set -g status-fg white
set -g status-interval 3 # status 갱신 주기는 3초
#### left
set -g status-left ''
set -g status-left-length 30
#### right
# set -g status-right '#[default] #[fg=white]%H:%M#[default]'
set -g status-right '#[default]'
## 복사/붙여넣기 설정
# https://www.rockyourcode.com/copy-and-paste-in-tmux/
set-option -g mouse on
setw -g mode-keys vi
set-option -s set-clipboard off
bind P paste-buffer
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
unbind -T copy-mode-vi Enter
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'pbcopy'
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel 'pbcopy'
# 위의 pbcopy 가 잘 작동하고 있어 아래 설정은 필요 없음
# set -g default-command "reattach-to-user-namespace -l bash"
# tmux의 복사/붙여넣기를 시스템 클립보드와 연동한다
# https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard
# brew install reattach-to-user-namespace