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 ''; }; }