added plugins to fish, not sure if all of them are working

This commit is contained in:
Christoph Hollizeck 2024-03-27 10:57:25 +01:00
parent d64ab56ca0
commit 00606b92ea
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
7 changed files with 47 additions and 51 deletions

View file

@ -14,8 +14,18 @@ in {
};
config = mkIf cfg.enable {
home.packages = with pkgs.fishPlugins; [
autopair
colored-man-pages
forgit
sponge
];
programs = {
fish = enabled;
fish = {
enable = true;
shellInit = "zoxide init fish | source";
};
starship = {
enable = true;
@ -53,7 +63,10 @@ in {
};
zoxide = {
enable = true;
enable = true;
options = [
"--cmd cd"
];
};
};
};

View file

@ -18,17 +18,17 @@ in {
];
programs.kitty = {
enable = true;
theme = "Tokyo Night";
font = {
name = "Code New Roman";
size = 15;
enable = true;
theme = "Tokyo Night";
font = {
name = "Code New Roman";
size = 15;
};
shellIntegration.enableFishIntegration = true;
settings = {
"background_opacity" = "0.9";
"shell" = "fish";
};
};
shellIntegration.enableFishIntegration = true;
settings = {
"background_opacity" = "0.9";
"shell" = "fish";
};
};
};
}