Dotfiles and setup scripts for my Termux environment on Android.
.zshrc— Zsh config with Oh My Zsh (af-magic theme).vimrc— Vim config (syntax, line numbers, 4-space tabs, mouse).termux.properties— Termux terminal settings.colors.properties— Color theme.font.ttf— Nerd Font for terminalbin/— Custom scripts (mp4checkfix utilities)packages.txt— List of manually installed packagesbootstrap.sh— First-run: installs packages + Oh My Zshinstall.sh— Symlinks dotfiles into place
pkg install git -y
git clone https://github.com/abrioso/dotfiles-termux.git
cd dotfiles-termux
bash bootstrap.sh
# restart Termux
bash install.sh
# restart TermuxFrom the cloned repo, run:
cp ~/.zshrc .zshrc
cp ~/.vimrc .vimrc
cp ~/.termux/termux.properties .termux.properties
cp ~/.termux/colors.properties .colors.properties
cp ~/.termux/font.ttf .font.ttf
pkg list-installed 2>/dev/null | grep -v automatic | grep installed | awk -F/ '{print $1}' | sort > packages.txt
git add -A && git commit -m "Update dotfiles" && git push