Files
nixos-config/home/shell/fish/default.nix
2023-12-20 16:09:36 -04:00

28 lines
397 B
Nix

{
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
grc
];
programs.fish = {
enable = true;
plugins = [
{
name = "grc";
src = pkgs.fishPlugins.grc.src;
}
{
name = "autopair";
src = pkgs.fishPlugins.autopair;
}
];
shellInit = lib.concatStringsSep "\n" [
"bind -k backspace 'do something'"
];
};
}