Added: Nixvim modules

This commit is contained in:
2026-01-27 00:48:01 +01:00
parent de5c0feaa3
commit 3ce95ebe41
12 changed files with 231 additions and 56 deletions

View File

@@ -7,6 +7,9 @@
tree
fastfetch # system stats
tabiew # Table viewer
glow # MD Viewer
llm # LLM in the Terminal
# Fun stuff
lolcat
@@ -87,7 +90,12 @@
"sudo darwin-rebuild switch --flake ~/.config/nix#cyper-mac";
};
initContent = "fastfetch";
initContent = ''
fastfetch
ai() {
llm -m groq/groq/compound "$@" | glow
}
'';
};
programs.fish = {
@@ -109,6 +117,12 @@
fastfetch
end
'';
functions.ai = {
body = ''
llm -m groq/groq/compound $argv | glow
'';
};
};
programs.starship = {