-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux.conf
66 lines (50 loc) · 1.83 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
set -g default-terminal 'screen-256color'
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
bind u resize-pane -R 35
# act like GNU screen
unbind C-b
set -g prefix C-f
# start window numbers at 1 to match keyboard order with tmux window order
set -g base-index 1
# set terminal emulator title
set -g set-titles on
# renumber windows sequentially after closing any of them
# set -g renumber-windows on
# soften status bar color from harsh green to light gray
set -g status-bg '#666666'
set -g status-fg '#aaaaaa'
# remove administrative debris (session name, hostname, time) in status bar
# set -g status-left ''
# set -g status-right ''
# increase scrollback lines
set -g history-limit 10000
# switch to last pane
bind-key C-a last-pane
# copypaste
bind C-c run "tmux show-buffer | xclip -i -selection clipboard"
bind C-v run "tmux set-buffer -- \"$(xclip -o -selection clipboard)\"; tmux paste-buffer"
# reload config
bind R source-file '~/.tmux.conf'
# last window
bind g last-window
set -g status on
set -g status-interval 2
set -g status-fg colour231
set -g status-bg colour234
set -g status-left-length 20
set -g status-left '#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold] #(eval $POWERLINE_COMMAND tmux left)'
set -g status-right-length 150
set -g window-status-format "#[fg=colour244,bg=colour234]#I #[fg=colour249]#W "
set -g window-status-current-format "#[fg=colour234,bg=colour31] #[fg=white,bg=colour31] #I #[fg=colour231,bold]#W #[fg=colour31,bg=colour234,nobold] "
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-logging'
run '~/.tmux/plugins/tpm/tpm'
# for iterm
setw -g aggressive-resize off