From a37b2849e56e3c6f1acda6552ab5ae7c8e8eb335 Mon Sep 17 00:00:00 2001 From: winston Date: Thu, 20 Jun 2024 08:32:36 +0200 Subject: [PATCH] fix(kitty): use option as alt on macOS --- home/apps/kitty.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/apps/kitty.nix b/home/apps/kitty.nix index e114387..b7f9f3e 100644 --- a/home/apps/kitty.nix +++ b/home/apps/kitty.nix @@ -10,10 +10,12 @@ in { programs.kitty = { enable = true; + font = { name = "Berkeley Mono"; size = 14; }; + settings = { placement_strategy = "top-left"; inactive_text_alpha = "0.8"; @@ -32,6 +34,8 @@ in tab_bar_min_tabs = "1"; tab_title_template = "{index}: {title}{sup.num_windows if num_windows > 1 else ''}{activity_symbol}{bell_symbol}"; + + macos_option_as_alt = "yes"; }; keybindings = { @@ -79,6 +83,7 @@ in "alt+enter" = "toggle_fullscreen"; }; + extraConfig = '' include themes.conf '';