-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
63 lines (41 loc) · 1.76 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
#
# Copyright (c) 2024 Jaedeok Kim (jdeokkim@protonmail.com)
#
# NOTE: https://hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf
# ============================================================================>
set -g mouse on
set -g prefix C-q
# ============================================================================>
set -g base-index 1
setw -g pane-base-index 1
# ============================================================================>
unbind C-b
unbind '"'
unbind %
# ============================================================================>
bind '\' split-window -h
bind - split-window -v
bind C-q send-prefix
bind r source-file ~/.tmux.conf
# ============================================================================>
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# ============================================================================>
set -g status-justify left
set -g status-position bottom
set -g status-style 'fg=colour2 bg=colour0'
# ============================================================================>
set -g status-left ''
set -g status-left-length 0
# ============================================================================>
set -g status-right '%Y-%m-%d, %H:%M:%S'
set -g status-right-length 40
# ============================================================================>
setw -g window-status-current-style 'fg=colour7 bg=colour2 bold'
setw -g window-status-current-format ' #I | #W (#F) '
# ============================================================================>
setw -g window-status-style 'fg=colour0 dim'
setw -g window-status-format ' #I | #W (#F) '
# ============================================================================>