Merge pull request #222515 from codedownio/tmux-run-plugins-last
This commit is contained in:
commit
da9db25ca4
1 changed files with 11 additions and 1 deletions
|
@ -52,6 +52,8 @@ let
|
||||||
set -s escape-time ${toString cfg.escapeTime}
|
set -s escape-time ${toString cfg.escapeTime}
|
||||||
set -g history-limit ${toString cfg.historyLimit}
|
set -g history-limit ${toString cfg.historyLimit}
|
||||||
|
|
||||||
|
${cfg.extraConfigBeforePlugins}
|
||||||
|
|
||||||
${lib.optionalString (cfg.plugins != []) ''
|
${lib.optionalString (cfg.plugins != []) ''
|
||||||
# Run plugins
|
# Run plugins
|
||||||
${lib.concatMapStringsSep "\n" (x: "run-shell ${x.rtp}") cfg.plugins}
|
${lib.concatMapStringsSep "\n" (x: "run-shell ${x.rtp}") cfg.plugins}
|
||||||
|
@ -108,10 +110,18 @@ in {
|
||||||
description = lib.mdDoc "Time in milliseconds for which tmux waits after an escape is input.";
|
description = lib.mdDoc "Time in milliseconds for which tmux waits after an escape is input.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraConfigBeforePlugins = mkOption {
|
||||||
|
default = "";
|
||||||
|
description = lib.mdDoc ''
|
||||||
|
Additional contents of /etc/tmux.conf, to be run before sourcing plugins.
|
||||||
|
'';
|
||||||
|
type = types.lines;
|
||||||
|
};
|
||||||
|
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
default = "";
|
default = "";
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Additional contents of /etc/tmux.conf
|
Additional contents of /etc/tmux.conf, to be run after sourcing plugins.
|
||||||
'';
|
'';
|
||||||
type = types.lines;
|
type = types.lines;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue