From 711995a92952781bb793dc01c677e115d9dc8da8 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Fri, 15 Nov 2024 21:39:06 +0100 Subject: [PATCH] helix: better theme --- home.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/home.nix b/home.nix index c55a347..47fa5f7 100644 --- a/home.nix +++ b/home.nix @@ -189,7 +189,7 @@ in services.picom.enable = true; programs.alacritty.settings.window.opacity = 0.7; programs.alacritty.settings.font.normal.family = "Monocraft"; - programs.alacritty.settings.font.size = 12; + programs.alacritty.settings.font.size = 10; #services.dunst.enable = true; gtk.enable = true; gtk.theme = { @@ -213,7 +213,7 @@ in programs.helix.enable = true; programs.helix.defaultEditor = true; programs.helix.settings = { - theme = "base16_transparent"; + theme = "tudbut"; editor = { line-number = "relative"; lsp.display-messages = true; @@ -234,5 +234,8 @@ in }; keys.normal.g.f = "code_action"; }; + programs.helix.themes.tudbut = { + inherits = "monokai_pro_ristretto"; + }; }; }