Evie Litherland-Smith
e2c9d8eba7
nvim repo has been converted to flake for easier inclusion but still stand-alone for non-nix systems Move tokyonight repo fetch to flake input to keep consistent and reduce multiple fetch calls
18 lines
382 B
Nix
18 lines
382 B
Nix
{tokyonight, ...}: {
|
|
imports = [./default.nix];
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
plugins = [
|
|
{
|
|
name = "tokyonight";
|
|
src = "${tokyonight}/extras/fish/tokyonight_night.fish";
|
|
}
|
|
];
|
|
};
|
|
fzf.enableFishIntegration = true;
|
|
keychain.enableFishIntegration = true;
|
|
starship.enableFishIntegration = true;
|
|
};
|
|
}
|