2023-05-28 15:12:46 +01:00
|
|
|
{pkgs, ...}: {
|
2023-07-16 17:35:36 +01:00
|
|
|
imports = [./default.nix];
|
2023-07-10 20:58:41 +01:00
|
|
|
programs = {
|
|
|
|
fish = {
|
|
|
|
enable = true;
|
|
|
|
plugins = [
|
|
|
|
{
|
|
|
|
name = "tokyonight";
|
|
|
|
src =
|
|
|
|
pkgs.fetchFromGitHub {
|
|
|
|
owner = "folke";
|
|
|
|
repo = "tokyonight.nvim";
|
|
|
|
rev = "cd5156f4b4a6c4c337a46deb0c0bd37319920833";
|
|
|
|
sha256 = "/ht+ixR1eyYR0la00Xq5q1gCsgb5Ly90JghERwbaDPQ=";
|
|
|
|
}
|
|
|
|
+ "/extras/fish/tokyonight_night.fish";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2023-07-16 17:35:36 +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
|
|
|
};
|
2023-03-29 15:38:01 +01:00
|
|
|
}
|