From 919cb3e0e3ec8c6416624b9db432d67e2c0fe244 Mon Sep 17 00:00:00 2001 From: fredrikr79 Date: Sun, 26 Jan 2025 13:36:07 +0100 Subject: [PATCH] kitty terminal --- home.nix | 57 ++++++++++++++++++++++++++++++-------------------------- 1 file changed, 31 insertions(+), 26 deletions(-) diff --git a/home.nix b/home.nix index eaafc9e..6f75813 100644 --- a/home.nix +++ b/home.nix @@ -654,36 +654,41 @@ in enable = true; settings = { confirm_os_window_close = 0; - dynamic_background_opacity = true; + # dynamic_background_opacity = true; enable_audio_bell = false; mouse_hide_wait = "-1.0"; - window_padding_width = 10; - background_opacity = "0.5"; + window_padding_width = 2; + background_opacity = "0.7"; background_blur = 5; - symbol_map = let - mappings = [ - "U+23FB-U+23FE" - "U+2B58" - "U+E200-U+E2A9" - "U+E0A0-U+E0A3" - "U+E0B0-U+E0BF" - "U+E0C0-U+E0C8" - "U+E0CC-U+E0CF" - "U+E0D0-U+E0D2" - "U+E0D4" - "U+E700-U+E7C5" - "U+F000-U+F2E0" - "U+2665" - "U+26A1" - "U+F400-U+F4A8" - "U+F67C" - "U+E000-U+E00A" - "U+F300-U+F313" - "U+E5FA-U+E62B" - ]; - in - (builtins.concatStringsSep "," mappings) + " Symbols Nerd Font"; + disable_ligatures = "cursor"; + # symbol_map = let + # mappings = [ + # "U+23FB-U+23FE" + # "U+2B58" + # "U+E200-U+E2A9" + # "U+E0A0-U+E0A3" + # "U+E0B0-U+E0BF" + # "U+E0C0-U+E0C8" + # "U+E0CC-U+E0CF" + # "U+E0D0-U+E0D2" + # "U+E0D4" + # "U+E700-U+E7C5" + # "U+F000-U+F2E0" + # "U+2665" + # "U+26A1" + # "U+F400-U+F4A8" + # "U+F67C" + # "U+E000-U+E00A" + # "U+F300-U+F313" + # "U+E5FA-U+E62B" + # ]; + # in + # (builtins.concatStringsSep "," mappings) + " Symbols Nerd Font"; }; font.name = "monocraft"; + font.size = 16; + font.package = pkgs.monocraft; + shellIntegration.enableZshIntegration = true; + theme = "Dracula"; }; }