dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit ebd4a0b556ff563efbbde4412bd241575d5c4bf3
parent 3137fab6177d145fb3944f3a2b4df425c0e4e723
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Mon, 22 Jun 2020 12:05:48 +0200

tmux: bindings

Former-commit-id: 400588851ea5e576211885f2d2c382f8e176a902
Diffstat:
Mtmux/tmux.conf | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/tmux/tmux.conf b/tmux/tmux.conf @@ -40,6 +40,10 @@ set -g prefix C-a bind a send-prefix bind C-a send-prefix +# Switch ; and : +bind \; command-prompt +bind : last-pane + # Reload the config file unbind r bind r source-file ~/.config/tmux/tmux.conf \; display-message "Reloaded config" @@ -47,6 +51,8 @@ bind r source-file ~/.config/tmux/tmux.conf \; display-message "Reloaded config" # Allow c-a c-d to detach bind C-d detach-client +# Create a new session +bind C new-session # }}} # Windows {{{