feat: expanded all lists

This commit is contained in:
Nick 2025-01-08 19:06:14 -06:00
parent 59cc199722
commit bb0b55b011
144 changed files with 1798 additions and 507 deletions

View file

@ -0,0 +1,18 @@
{
flake,
pkgs,
...
}: let
inherit (flake.config.aesthetics.themes.theme) font;
in {
confirm-close-surface = false;
window-decoration = false;
font-size = 10;
font-family = font;
window-padding-x = 10;
window-padding-y = 10;
copy-on-select = true;
bold-is-bright = true;
shell-integration = "detect";
command = "${pkgs.nushell}/bin/nu";
}

View file

@ -0,0 +1,29 @@
{flake, ...}: let
inherit (flake.config.aesthetics.themes.theme) colors;
in {
catppuccin-macchiato = {
background = "${colors.base}";
cursor-color = "${colors.rosewater}";
foreground = "${colors.text}";
palette = [
"0=${colors.surface1}"
"1=${colors.red}"
"2=${colors.green}"
"3=${colors.yellow}"
"4=${colors.blue}"
"5=${colors.pink}"
"6=${colors.teal}"
"7=${colors.subtext0}"
"8=${colors.surface2}"
"9=${colors.red}"
"10=${colors.green}"
"11=${colors.yellow}"
"12=${colors.blue}"
"13=${colors.pink}"
"14=${colors.teal}"
"15=${colors.subtext1}"
];
selection-background = "${colors.surface2}";
selection-foreground = "${colors.text}";
};
}