make kitty TERM work on other computers

This commit is contained in:
cy 2025-01-23 01:32:22 -05:00
parent 6da74e745e
commit 9de0b072cd
4 changed files with 3 additions and 8 deletions

View file

@ -9,7 +9,7 @@
}; };
themeFile = "GitHub_Dark"; themeFile = "GitHub_Dark";
settings = { settings = {
enable_audio_bell = false; enable_audio_bell = true;
# how many windows should be open before kitty asks # how many windows should be open before kitty asks
# for confirmation # for confirmation
confirm_os_window_close = 0; confirm_os_window_close = 0;
@ -20,6 +20,7 @@
"scrollback_pager_history_size" = "1024"; "scrollback_pager_history_size" = "1024";
# see https://github.com/sharkdp/bat/issues/1077#issuecomment-652785399 # see https://github.com/sharkdp/bat/issues/1077#issuecomment-652785399
"scrollback_pager" = "bat --pager='less -FR +G'"; "scrollback_pager" = "bat --pager='less -FR +G'";
"scrollback_lines" = 20000;
}; };
keybindings = { keybindings = {
# kitty_mod is ctrl+shift by default # kitty_mod is ctrl+shift by default

View file

@ -16,7 +16,6 @@
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [ home.packages = with pkgs; [
foot.terminfo
attic-server attic-server
]; ];
} }

View file

@ -49,12 +49,6 @@
x11.enable = true; x11.enable = true;
}; };
dconf.settings = {
"org/gnome/desktop/interface" = {
cursor-theme = "Bibata-Modern";
};
};
home.packages = with pkgs; [ home.packages = with pkgs; [
firefox firefox
ungoogled-chromium ungoogled-chromium

View file

@ -197,4 +197,5 @@
}; };
}; };
virtualisation.oci-containers.backend = "podman"; virtualisation.oci-containers.backend = "podman";
environment.enableAllTerminfo = true;
} }