aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-05-12 00:47:21 -0300
committerEuAndreh <eu@euandre.org>2022-05-12 00:47:21 -0300
commit1528bb60f48710d2b94d17a786a3b71150aa27e0 (patch)
treeeefc12189a2626aa53f65bf0e5193bac30f9529b
parent.local/bin/msg: Use `email` command over `mail` (diff)
downloaddotfiles-1528bb60f48710d2b94d17a786a3b71150aa27e0.tar.gz
dotfiles-1528bb60f48710d2b94d17a786a3b71150aa27e0.tar.xz
.config/tmux/tmux.conf: Source file from $XDG_CONFIG instead of ~/.tmux.conf
-rw-r--r--.config/tmux/tmux.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index 705e9a32..0eadf7c0 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -8,7 +8,7 @@ set -g prefix C-v
set -g mouse on
# Bind "C-x r" to reload the configuration file
-bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
+bind-key r source-file $XDG_CONFIG_HOME/tmux/tmux.conf \; display-message "$XDG_CONFIG_HOME/tmux.conf reloaded"
# Holy answer that properly implements copying from tmux!
# https://unix.stackexchange.com/a/349020/276661