kitty: simplify shell integration configuration
1 file changed, 7 insertions(+), 10 deletions(-)
changed files
M user/settings/kitty.nix → user/settings/kitty.nix
@@ -1,9 +1,6 @@ { pkgs , ... }: -let - inherit (pkgs) stdenv; -in { programs.kitty = { enable = true;@@ -12,14 +9,14 @@ package = pkgs.recursive; name = "Rec Mono SemiCasual"; size = 15; }; - theme = "Alabaster"; shellIntegration = { - mode = "enabled"; + mode = "no-cursor"; + }; + settings = { + macos_option_as_alt = "left"; }; + extraConfig = '' + include ~/.config/kitty/theme.conf + ''; }; - programs.fish.shellInit = '' - if test -n $KITTY_INSTALLATION_DIR - set -x KITTY_SHELL_INTEGRATION no-cursor - end - ''; }