set up a basic tmux conf
This commit is contained in:
parent
aacddf147f
commit
ff83f328a5
3 changed files with 21 additions and 1 deletions
14
dot_config/tmux/tmux.conf
Normal file
14
dot_config/tmux/tmux.conf
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue