generation 547 25.11.20250714.62e0f05

This commit is contained in:
2025-12-10 16:37:24 -05:00
parent c0caaeb234
commit 8aa3987c1b
3 changed files with 22 additions and 1 deletions

View File

@@ -186,7 +186,10 @@ super + bracket{left,right}
super + {o}
sh nf daily
super + {i}
super + {;}
sh nf idk
super + {m}
sh nf idk
# open my notes without goyo and with nvimteee

View File

@@ -220,11 +220,20 @@ alias dnsblock-add="nvim /home/synchronous/nix-cfg/system/networking/blockers.sh
alias focus-wifi="nvim /home/synchronous/nix-cfg/system/networking/blockers.sh"
alias verus-dir="cd /home/synchronous/code/verus"
alias cure="cd /home/synchronous/code/cure53"
alias scripts="cd /home/synchronous/nix-cfg/home/scripts"
alias bookmarks="vim -c '80' /home/synchronous/nix-cfg/home/programs/firefox/default.nix"
stack() {
find . -type f -exec echo -e "\n--- {} ---\n" \; -exec cat {} \;
}
stack-fast() {
rg -l . | while read -r file; do
echo -e "\n--- $file ---\n"
cat "$file"
done
}
stack-b() {
(
while IFS= read -r -d '' file; do