Use vi keybindings to move between panes in tmux
This commit is contained in:
parent
708c3c3dae
commit
43fb881199
|
@ -7,33 +7,13 @@ bind-key C-o last-window
|
|||
set-option -g prefix C-o
|
||||
unbind-key C-b
|
||||
|
||||
# number windows from 1
|
||||
set -g base-index 1
|
||||
|
||||
set -g default-terminal "screen-256color"
|
||||
set -g history-limit 10000
|
||||
|
||||
set -g history-file ~/.dotfiles/.tmux_history
|
||||
|
||||
# enable mouse scrolling
|
||||
# set -g mouse on
|
||||
|
||||
#### COLOUR
|
||||
|
||||
# default statusbar colors
|
||||
set-option -g status-bg colour235 #base02
|
||||
set-option -g status-fg colour136 #yellow
|
||||
|
||||
# pane number display
|
||||
set-option -g display-panes-active-colour colour33 #blue
|
||||
set-option -g display-panes-colour colour166 #orange
|
||||
|
||||
# clock
|
||||
set-window-option -g clock-mode-colour colour64 #green
|
||||
|
||||
set-window-option -g window-status-current-format '#I:#W#F'
|
||||
set-window-option -g window-status-format '#I:#W#F'
|
||||
|
||||
set -g status-left " "
|
||||
set -g status-right " "
|
||||
bind-key j select-pane -D
|
||||
bind-key k select-pane -U
|
||||
bind-key l select-pane -R
|
||||
bind-key h select-pane -L
|
||||
|
||||
|
|
Loading…
Reference in New Issue