diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-04-24 00:31:00 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-04-24 00:31:00 +0200 |
commit | 14ee49f575c915df1a9776961ab3b3b803ca6ab7 (patch) | |
tree | 462e02f40568694c5341e4d9a9b3154f867c534e /tmux | |
parent | 89ac0b5773c1e032160732acb6a8b3dc779e2295 (diff) | |
download | dotfiles-14ee49f575c915df1a9776961ab3b3b803ca6ab7.tar.gz |
tmux
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/tmux.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 5ff10c1..ce944d4 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -2,3 +2,20 @@ unbind C-b set -g prefix C-a bind C-a send-prefix + +# send prefix to nested instace +bind-key -n C-b send-keys C-a + +set-option -g history-limit 5000 + +bind c new-window -c "#{pane_current_path}" + +bind -n M-Left select-pane -L +bind -n M-Right select-pane -R +bind -n M-Up select-pane -U +bind -n M-Down select-pane -D + +set -g window-status-current-style 'underscore' +set -g status-style bg=darkblue + +set -g set-clipboard |