diff --git a/home/tmux.nix b/home/tmux.nix index d79458a..6a42c26 100644 --- a/home/tmux.nix +++ b/home/tmux.nix @@ -12,5 +12,14 @@ in baseIndex = 1; terminal = "screen-256color"; clock24 = true; + + plugins = with pkgs; [ + { + plugin = tmuxPlugins.tmux-colors-solarized; + extraConfig = '' + set -g @colors-solarized 'light' + ''; + } + ]; }; }