From 55eb3e4773b8e73d7073c53aa5a61a017631b519 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 10 Dec 2019 14:22:15 +0000 Subject: Make TMUX_CONF a list of files and expand leading $FOO or ~. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index bcdc99a4..833e74bf 100644 --- a/tmux.h +++ b/tmux.h @@ -60,9 +60,9 @@ struct winlink; /* Client-server protocol version. */ #define PROTOCOL_VERSION 8 -/* Default global configuration file. */ +/* Default configuration files. */ #ifndef TMUX_CONF -#define TMUX_CONF "/etc/tmux.conf" +#define TMUX_CONF "/etc/tmux.conf:~/.tmux.conf" #endif /* Minimum layout cell size, NOT including border lines. */ -- cgit