-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
54 lines (36 loc) · 1.31 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
# tmux config
set -g default-terminal "xterm-256color"
set -sg escape-time 0
unbind C-b
set -g prefix C-a
bind v split-window -h -c "#{pane_current_path}"
bind z split-window -v -c "#{pane_current_path}"
bind l select-pane -L
bind h select-pane -R
bind k select-pane -U
bind j select-pane -D
bind -n C-n next-window
bind -n C-b previous-window
bind -n C-t new-window
bind-key Up resize-pane -U #(Resizes the current pane down)
bind-key Down resize-pane -D #(Resizes the current pane upward)
bind-key Left resize-pane -L #(Resizes the current pane left)
bind-key Right resize-pane -R #(Resizes the current pane right)
bind-key e resize-pane -Z #fullscreen
setw -g monitor-activity on
set -g visual-activity on
set-option -g mouse on
setw -g mode-keys vi
# source-file "${HOME}/.tmux-themepack/powerline/double/yellow.tmuxtheme"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/double/yellow'
set -g @plugin 'christoomey/vim-tmux-navigator'
# Other examples:
# 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 -b '~/.tmux/plugins/tpm/tpm'