This commit is contained in:
2024-02-27 13:55:59 -07:00
parent 8bef0233ba
commit 33df980fa6
36 changed files with 586 additions and 241 deletions

View File

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