Add tmux config

master
Hektor Misplon 2020-05-07 12:31:57 +00:00
parent 3df9f87899
commit 9a1a4dd25d
1 changed files with 18 additions and 0 deletions

18
.tmux.conf Normal file
View File

@ -0,0 +1,18 @@
set-option -g prefix C-Space
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
unbind s
unbind h
unbind % # vsplit
unbind '"' # hsplit
# vim-style splits
bind v split-window -h -c "#{pane_current_path}"
bind s split-window -v -c "#{pane_current_path}"
# window numbers from 1
set -g base-index 1