This commit is contained in:
2026-03-24 13:00:25 +03:00
parent e20bc8c042
commit 163b7549e2
4 changed files with 39 additions and 20 deletions
+10
View File
@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
programs.zsh.shellAliases = {
llm = ''
f() { llm "$@" | tee >(cat) | glow --style=dark --width=100; unset -f f; }; f'';
};
home.packages = with pkgs; [ python312Packages.llm glow ];
}