12 lines
444 B
Bash
Executable File
12 lines
444 B
Bash
Executable File
#!/usr/bin/env bash
|
|
git submodule update --init
|
|
# Use alias for installing packages so we don't maintain several dependency lists.
|
|
. .bash_aliases
|
|
sudo apt update -y && sudo apt install -y $DOT_PACKAGES
|
|
go install github.com/arl/gitmux@latest
|
|
|
|
# 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
|
|
rm -rf ble.sh
|