set up a basic tmux conf

This commit is contained in:
liv 2024-07-13 18:57:45 +02:00
parent aacddf147f
commit ff83f328a5
3 changed files with 21 additions and 1 deletions

14
dot_config/tmux/tmux.conf Normal file
View file

@ -0,0 +1,14 @@
# mouse mode
set -g mouse on
# easy reloads
bind r source-file ~/.config/tmux/tmux.conf
# fix escape-time to prevent weird behaviour in vim
set -s escape-time 0
# use C-b s/h for splitting
unbind s
unbind h
bind s split-window -v
bind h split-window -h