add tmux basic config

feature/improve-speed
bretello 2021-03-25 08:35:26 +01:00
parent fe83822b56
commit 2e19f7d476
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 16 additions and 0 deletions

16
tmux.conf 100644
View File

@ -0,0 +1,16 @@
setw -g mode-keys vi
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
# use vim-like keys for splits and windows
bind-key v split-window -h -c "#{pane_current_path}"
bind-key s split-window -v -c "#{pane_current_path}"
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key t swap-window -t +1
bind-key T swap-window -t -1
set-option -sg escape-time 0
set -s escape-time 0