-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
38 lines (30 loc) · 893 Bytes
/
.tmux.conf
File metadata and controls
38 lines (30 loc) · 893 Bytes
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
unbind C-b
set-option -g prefix `
bind ` send-prefix
#Start window and pane numbering at 1
set -g base-index 1
#Pane Keybinds
bind j select-pane -D
bind h select-pane -L
bind k select-pane -U
bind l select-pane -R
bind = split-window -h
bind-key x kill-pane
set -g mouse on
#Window Keybinds
bind t new-window
bind Space choose-tree -Z
#Vim Escape Fix
set -sg escape-time 0
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'