added bash and kitty config

This commit is contained in:
2026-01-18 10:34:49 -05:00
parent d48174b97c
commit c318d8ffdb
3 changed files with 1645 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -e
DOTFILES_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Packages to stow
PACKAGES=(bash kitty)
echo "Setting up dotfiles from $DOTFILES_DIR"
for pkg in "${PACKAGES[@]}"; do
echo "Stowing $pkg..."
stow -v -d "$DOTFILES_DIR" -t "$HOME" "$pkg"
done
echo "Done!"