Files
dot/setup.sh

13 lines
456 B
Bash
Raw Normal View History

2026-02-14 01:58:02 +00:00
#!/usr/bin/env bash
git submodule update --init
# Use alias for installing packages so we don't maintain several dependency lists.
. .bash_aliases
,init
go install github.com/arl/gitmux@latest
2026-02-14 21:48:25 -05:00
# Install bash line editor for auto completion.
git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git
make -C ble.sh install PREFIX=$(pwd)/.local
echo 'source -- ~/.local/share/blesh/ble.sh' >> .bash_aliases
rm -rf ble.sh