From 86d9a119cf647bfdb6003f6e03c381670ee812a9 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 21 Jun 2021 17:30:42 +0200 Subject: [PATCH] home: tmux: use solarized plugin --- home/tmux.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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' + ''; + } + ]; }; }