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; };
easy-dhall-nix = import easy-dhall-nix { inherit pkgs; };
fishPlugins.z = z;
fishThemes.agnoster = agnoster;
z = {
src = z;
name = "z";
};
agnoster = {
src = agnoster;
name = "agnoster";
};
})
];
})

View file

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

View file

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