From c73f1f09cfe84ccc0d7493d6a58f4be95d6870d3 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 2 Nov 2024 16:36:36 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(wezterm):=20Return=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/wezterm/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/wezterm/default.nix b/home/wezterm/default.nix index 67c8599..cf2ec3e 100644 --- a/home/wezterm/default.nix +++ b/home/wezterm/default.nix @@ -14,7 +14,8 @@ config.enable_tab_bar = false -- TODO: auto-set this depending on color scheme - config.color_scheme = "rose-pine" + local theme = wezterm.plugin.require('https://github.com/neapsix/wezterm').main + config.colors = theme.colors() config.font = wezterm.font_with_fallback({ { family = "${builtins.elemAt fonts 0}" }, @@ -43,6 +44,8 @@ -- TODO: on mairley this should be set to 14.0 config.font_size = 11.0 + + return config ''; }; }