nixos/home/shell/fish.nix

18 lines
382 B
Nix
Raw Normal View History

{tokyonight, ...}: {
imports = [./default.nix];
2023-07-10 20:58:41 +01:00
programs = {
fish = {
enable = true;
plugins = [
{
name = "tokyonight";
src = "${tokyonight}/extras/fish/tokyonight_night.fish";
2023-07-10 20:58:41 +01:00
}
];
};
fzf.enableFishIntegration = true;
2023-07-10 20:58:41 +01:00
keychain.enableFishIntegration = true;
starship.enableFishIntegration = true;
2023-03-29 15:59:39 +01:00
};
}