diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-12 16:07:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-12 16:07:56 +0000 |
commit | 22355ce947da7acd8863d7f7a467324ad030faec (patch) | |
tree | 4f5a938c5136309ee24c945a133150632bc01942 /tmux.h | |
parent | bd098c273b6a8ac6a0d493194cacd2e231bbeefe (diff) | |
download | rtmux-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |