1
Fork 0

feat: upgraded alacritty theme

This commit is contained in:
Matei Adriel 2021-12-02 19:57:32 +02:00
parent 8a3f2190c5
commit e80af53fd8
3 changed files with 12 additions and 4 deletions

View file

@ -38,8 +38,15 @@
import easy-purescript-nix { inherit pkgs; }; import easy-purescript-nix { inherit pkgs; };
easy-dhall-nix = import easy-dhall-nix { inherit pkgs; }; easy-dhall-nix = import easy-dhall-nix { inherit pkgs; };
fishPlugins.z = z; z = {
fishThemes.agnoster = agnoster; src = z;
name = "z";
};
agnoster = {
src = agnoster;
name = "agnoster";
};
}) })
]; ];
}) })

View file

@ -45,7 +45,8 @@
bright = { bright = {
black = "#5e105c"; black = "#5e105c";
red = "#ec9ded"; red = "#ec9ded";
green = "#b726d4"; green = "#2ec0f9";
# green = "#b726d4";
yellow = "#fff773"; yellow = "#fff773";
blue = "#75d5fa"; blue = "#75d5fa";
magenta = "#ffb3d7"; magenta = "#ffb3d7";

View file

@ -6,7 +6,7 @@ in {
home-manager.users.adrielus.programs.fish = { home-manager.users.adrielus.programs.fish = {
inherit shellAliases; inherit shellAliases;
shellInit = common.shellInit; shellInit = common.shellInit;
plugins = [ fishPlugins.z fishThemes.agnoster ]; plugins = with pkgs; [ z agnoster ];
enable = true; enable = true;
}; };