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

28 lines
401 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 backward-kill-word"
];
};
}