-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtmux.conf
80 lines (59 loc) · 1.84 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
# improve colors
set -g default-terminal 'screen-256color'
set-option -sa terminal-overrides ',xterm-256color:RGB'
# use vim keybindings in copy mode
setw -g mode-keys vi
# act like vim
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 :+
# shortcut for reloading tmux conf
bind r source-file ~/.tmux.conf \; display "Config reloaded!"
# copy-mode
bind-key f copy-mode
# better plane splitting
bind | split-window -h
bind - split-window -v
# act like GNU screen
set -g prefix C-b
set -g prefix2 C-s
set -g mouse on
set-option -g focus-events on
# Remove default deplay
set -s escape-time 1
# start window numbers at 1 to match keyboard order with tmux window order
set -g base-index 1
set-window-option -g pane-base-index 1
# renumber windows sequentially after closing any of them
set -g renumber-windows on
# Set status bar
setw -q -g utf8 on
# increase scrollback lines
set -g history-limit 10000
# switch to last pane
bind-key C-a last-pane
# keybindings to make resizing easier
bind -r C-h resize-pane -L 5
bind -r C-j resize-pane -D 5
bind -r C-k resize-pane -U 5
bind -r C-l resize-pane -R 5
set -g default-shell $SHELL
set -g default-command 'reattach-to-user-namespace -l $SHELL'
set -g @copycat_ip_search 'C-i'
# Powerline
# run-shell "powerline-daemon -q"
# run-shell 'powerline-config tmux setup'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin "jlipps/tmux-safekill"
set -g @plugin 'erikw/tmux-powerline'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
# Local config
if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local'