aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-07-14 06:38:14 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-07-14 06:38:14 +0000
commitd2c3dbc665367ae391ea52828ac1c6007097380a (patch)
treef79cbc82b2355205ae44ddfae4b658ce98369263 /tmux.h
parent2f75b07d08e68e6173a06fd120e0684d51e29db3 (diff)
downloadrtmux-d2c3dbc665367ae391ea52828ac1c6007097380a.tar.gz
rtmux-d2c3dbc665367ae391ea52828ac1c6007097380a.tar.bz2
rtmux-d2c3dbc665367ae391ea52828ac1c6007097380a.zip
If it exist, load a system-wide configuration file /etc/tmux.conf before any
user-specified one.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index dcca8d25..427ef578 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.355 2009-07-12 17:11:39 nicm Exp $ */
+/* $Id: tmux.h,v 1.356 2009-07-14 06:38:14 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -39,8 +39,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