Skip to content
Snippets Groups Projects
Commit ea73a11d authored by Sebastian Semmler's avatar Sebastian Semmler
Browse files

expand tmux config

parent 086905de
No related branches found
No related tags found
No related merge requests found
set-option -g default-shell /bin/zsh
#set-option -g default-shell /bin/zsh
set -g default-command /bin/zsh
set -g default-shell /bin/zsh
bind-key a set-window-option synchronize-panes
bind-key X kill-session
set -g mouse on
# vi mode keys
set-window-option -g mode-keys vi
setw -g mode-keys vi
# use CTRL+b instead of CTRL+a
set-option -g mouse off
set -g prefix C-a
unbind C-b
#panes start at 1, windows as well
set -sg escape-time 1
set -g base-index 1
setw -g pane-base-index 1
#movement in vim style
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
#resizing of windows in vim style
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
#cycle through windows
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment