mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: expanded all lists
This commit is contained in:
parent
59cc199722
commit
bb0b55b011
144 changed files with 1798 additions and 507 deletions
18
home/modules/ghostty/config/settings.nix
Executable file
18
home/modules/ghostty/config/settings.nix
Executable 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";
|
||||
}
|
29
home/modules/ghostty/config/themes.nix
Executable file
29
home/modules/ghostty/config/themes.nix
Executable 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}";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue