bash | switch to kitty as default term prog

This commit is contained in:
Don Harper 2025-04-26 15:25:18 -05:00
parent 808f735554
commit 950a988bd9

View file

@ -1,16 +1,17 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
programs.kitty = { programs = {
kitty = {
enable = true; enable = true;
settings = { settings = {
mouse_hide_wait = "3.0"; mouse_hide_wait = "3.0";
url_style = "double"; url_style = "double";
copy_on_select = "no"; copy_on_select = "no";
# background_opacity = "0.75"; background_opacity = "0.75";
scrollback_lines = 4000; scrollback_lines = 4000;
scrollback_pager_history_size = 2048; scrollback_pager_history_size = 2048;
}; };
}; };
programs.foot = { foot = {
enable = true; enable = true;
server = { enable = true; }; server = { enable = true; };
settings = { settings = {
@ -19,4 +20,9 @@
bell = { urgent = "yes"; }; bell = { urgent = "yes"; };
}; };
}; };
yazi = { # terminal fm ala ranger/vifm
enable = true;
flavors = { dark = pkgs.yaziPlugins.yatline-catppuccin; };
};
};
} }