25 lines
432 B
Nix
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;
|
|
}
|