From 22355ce947da7acd8863d7f7a467324ad030faec Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 12 Jul 2009 16:07:56 +0000 Subject: If it exist, load a system-wide configuration file /etc/tmux.conf before any user-specified one. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 02f08ed4..d2409f62 100644 --- a/tmux.h +++ b/tmux.h @@ -40,8 +40,9 @@ extern const char *__progname; -/* Default configuration file. */ +/* Default configuration files. */ #define DEFAULT_CFG ".tmux.conf" +#define SYSTEM_CFG "/etc/tmux.conf" /* Default prompt history length. */ #define PROMPT_HISTORY 100 -- cgit