-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
85 lines (67 loc) · 2.61 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
# Set ctrl-a as prefix key
set -g prefix M-a
unbind-key C-b
bind-key M-a send-prefix
set -g base-index 1
setw -g pane-base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
setw -g mode-keys vi
setw -g mouse on
setw -g monitor-activity on
bind-key v split-window -h
bind-key s split-window -v
bind-key -n M-v split-window -h
bind-key -n M-s split-window -v
bind-key -n M-C-Down select-pane -m \; select-pane -D \; swap-pane \; select-pane -M
bind-key -n M-C-Up select-pane -m \; select-pane -U \; swap-pane \; select-pane -M
bind-key -n M-C-Left select-pane -m \; select-pane -L \; swap-pane \; select-pane -M
bind-key -n M-C-Right select-pane -m \; select-pane -R \; swap-pane \; select-pane -M
bind-key -n M-C-S-Down resize-pane -D
bind-key -n M-C-S-Up resize-pane -U
bind-key -n M-C-S-Left resize-pane -L
bind-key -n M-C-S-Right resize-pane -R
bind-key -n M-C-j select-pane -m \; select-pane -D \; swap-pane \; select-pane -M
bind-key -n M-C-k select-pane -m \; select-pane -U \; swap-pane \; select-pane -M
bind-key -n M-C-h select-pane -m \; select-pane -L \; swap-pane \; select-pane -M
bind-key -n M-C-l select-pane -m \; select-pane -R \; swap-pane \; select-pane -M
bind-key -n M-C-S-j resize-pane -D
bind-key -n M-C-S-k resize-pane -U
bind-key -n M-C-S-h resize-pane -L
bind-key -n M-C-S-l resize-pane -R
bind-key -n M-f run-shell -b "~/dotfiles/tmux/pipe-captured ~/dotfiles/tmux/follow-url"
# Use Alt-arrow keys without prefix key to switch panes
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
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
# Alt + shift to manage windows
bind -n M-S-Left previous-window
bind -n M-S-Right next-window
bind -n M-S-h previous-window
bind -n M-S-l next-window
bind -n M-N new-window
# No delay for escape key press
set -sg escape-time 0
# Reload tmux config
bind r source-file ~/.tmux.conf
# THEME
set -g status-style bg=black
set -g status-style fg=white
set -g window-status-current-style bg=white
set -g window-status-current-style fg=black
set -g window-status-current-style bold
set -g status-interval 60
set -g status-left-length 30
set -g status-right-length 40
set -g status-left '#[fg=green](#S) '
#
set -g status-right '#[fg=white]#(timew summary | tail -2 | tr -d '[:space:]' | sed 's/:[0-9][0-9]$//' | sed 's/No.*/0:00/')#[default]#[fg=white] | KW%V %d.%m. | %H:%M#[default]'