aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-12 16:07:56 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-12 16:07:56 +0000
commit22355ce947da7acd8863d7f7a467324ad030faec (patch)
tree4f5a938c5136309ee24c945a133150632bc01942 /tmux.h
parentbd098c273b6a8ac6a0d493194cacd2e231bbeefe (diff)
downloadrtmux-22355ce947da7acd8863d7f7a467324ad030faec.tar.gz
rtmux-22355ce947da7acd8863d7f7a467324ad030faec.tar.bz2
rtmux-22355ce947da7acd8863d7f7a467324ad030faec.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.h3
1 files changed, 2 insertions, 1 deletions
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