tmux/tmux.conf.local

24 lines
503 B
Plaintext
Raw Permalink Normal View History

2016-01-28 23:55:11 +01:00
2023-08-16 07:52:18 +02:00
## Load specific colors
source-file $HOME/.tmux/themes/local.tmux
2016-01-28 01:11:03 +01:00
### keybindings {{{
## Prefix key (default: C-b)
# Use C-a as a prefix-key only on local session
unbind C-b
set -g prefix C-a
bind a send-prefix
2016-01-28 01:11:03 +01:00
# Copy-mode
bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
2023-07-06 09:47:13 +02:00
# Switch between sessions
bind C-b switch-client -n
2022-12-12 09:56:25 +01:00
# Initialize sessions
bind I source-file ~/.tmux/splitWORK
bind H source-file ~/.tmux/splitLAPTOP
2016-01-28 01:11:03 +01:00
### }}}