diff options
| author | Skladnayazebra <skladnayazebra@gmail.com> | 2025-10-13 15:23:49 +0200 |
|---|---|---|
| committer | Skladnayazebra <skladnayazebra@gmail.com> | 2025-10-13 15:23:49 +0200 |
| commit | 8154ea15eccaa9a5d466548e3c073b976d5c0208 (patch) | |
| tree | 18cd04ed14f067cdc517747b231b2624a2fe8b4c /tmux | |
| parent | 051855d2a8e1a0920f5976b34955325b52740100 (diff) | |
add tmux config
Diffstat (limited to 'tmux')
| -rw-r--r-- | tmux/tmux.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..f4b9ebc --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,18 @@ +unbind r +bind r source-file ~/.tmux.conf + +set -g mouse on + +# allows to use vim bindings in scroll mode - key [ +set-window-option -g mode-keys vi + +# switch between panes using vim binds + +unbind C-S-h +unbind C-S-l + +bind-key -n C-S-h select-pane -L +bind-key -n C-S-j select-pane -D +bind-key -n C-S-k select-pane -U +bind-key -n C-S-l select-pane -R + |
