dotfiles/modules/fish/home.nix
2024-02-27 13:55:59 -07:00

25 lines
432 B
Nix

{ pkgs, lib, config, ... }:
let
shellAliases = {
l = "ls -lh";
ll = "ls -lha";
skcd = "j $(sk)";
};
in {
home.packages = [
pkgs.grc
pkgs.fishPlugins.grc
];
programs.fish = {
interactiveShellInit = ''
set fish_greeting # Disable greeting
'';
inherit shellAliases;
};
programs.kitty.shellIntegration.enableFishIntegration = true;
programs.skim.enableFishIntegration = true;
}