diff options
author | nicm <nicm> | 2019-12-10 14:22:15 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-12-10 14:22:15 +0000 |
commit | 55eb3e4773b8e73d7073c53aa5a61a017631b519 (patch) | |
tree | 805291e96043cc60ec769936176d77e5e74a8c10 /tmux.h | |
parent | 7826d40ff997e76d7cc4153ddde8bac6273e3a26 (diff) | |
download | rtmux-55eb3e4773b8e73d7073c53aa5a61a017631b519.tar.gz rtmux-55eb3e4773b8e73d7073c53aa5a61a017631b519.tar.bz2 rtmux-55eb3e4773b8e73d7073c53aa5a61a017631b519.zip |
Make TMUX_CONF a list of files and expand leading $FOO or ~.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |