Update .tmux.conf
This commit is contained in:
parent
d6eaaeea60
commit
e6fe36612a
12
.tmux.conf
12
.tmux.conf
|
@ -5,7 +5,7 @@ set -g mouse on
|
|||
|
||||
# CTRL-A instead of CTRL-B as prefix
|
||||
unbind C-b
|
||||
set-option -g prefix C-a
|
||||
set-option -g prefix C-Space
|
||||
bind-key C-a send-prefix
|
||||
|
||||
# Necessary for the styling!
|
||||
|
@ -27,3 +27,13 @@ set -g pane-border-format "#{?pane_active,#[fg=#3c3836 bg=#fb4934] #{pane_ind
|
|||
set -g pane-border-status 'top'
|
||||
set -g pane-border-style fg=#fb4934
|
||||
set -g pane-active-border-style fg=#fb4934
|
||||
|
||||
bind-key -T prefix h select-pane -L
|
||||
bind-key -T prefix j select-pane -D
|
||||
bind-key -T prefix k select-pane -U
|
||||
bind-key -T prefix l select-pane -R
|
||||
|
||||
bind-key -r -T prefix C-h resize-pane -L 2
|
||||
bind-key -r -T prefix C-j resize-pane -D 2
|
||||
bind-key -r -T prefix C-k resize-pane -U 2
|
||||
bind-key -r -T prefix C-l resize-pane -R 2
|
||||
|
|
Loading…
Reference in New Issue