feat: major update to all configs

- move older config to archive

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2026-03-26 12:07:53 +05:30
committed by Morumotto
parent 4555248b72
commit c2786c7f96
67 changed files with 881 additions and 772 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/usr/bin/env bash
# hx-pick: loop between file picker and helix
# Select a file -> edit in helix -> back to picker on exit
# Press Esc/Ctrl-C in the picker to drop to a normal shell
dir="${1:-.}"
cd "$dir" || exit 1
while true; do
file=$(find . -type f \
-not -path './.git/*' \
-not -path '*/node_modules/*' \
-not -path '*/vendor/*' \
-not -path '*/__pycache__/*' \
-not -path '*/target/*' \
-not -path '*/.build/*' \
| sort \
| fzf --height=100% --layout=reverse --border=rounded \
--prompt="Edit > " \
--header="Esc to exit to shell" \
--preview='head -100 {}' \
--preview-window=right:50%:wrap)
[ -z "$file" ] && break
hx "$file"
done