-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
34 lines (28 loc) · 900 Bytes
/
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
set -g default-terminal "screen-256color"
set-option -g default-shell /bin/zsh
set -g mouse on
set -g history-limit 30000
set -g status-left-length 40
set -g status-left '#{?client_prefix,#[reverse] 🐶 (>^.^)> #[noreverse] ,}'
set-option -g prefix C-b
bind-key C-b last-window
#hjkl pane traversal
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
unbind Left
unbind Down
unbind Up
unbind Right
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'