1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Reload configuration with leader r

This commit is contained in:
2018-08-10 14:23:19 +02:00
parent 9ee0e4b478
commit b214f34904

View File

@@ -3,6 +3,7 @@ set -g bell-action any
# Default termtype. If the rcfile sets $TERM, that overrides this value.
set -g default-terminal tmux-256color-italic
set -g terminal-overrides ',tmux-256color-italic:Tc'
# Keep your finger on ctrl, or don't
bind-key ^D detach-client
@@ -123,3 +124,6 @@ bind - \
# Local config
if-shell "[ -f ~/.tmux.conf.user ]" 'source ~/.tmux.conf.user'
# reload config with leader-r
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."