2022-12-09 14:25:06 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# eget() {
|
|
|
|
# "$HOME/bin/eget" "$@"
|
|
|
|
# }
|
2022-12-10 12:18:26 -06:00
|
|
|
#
|
|
|
|
export PATH="$PATH:/home/daylin/bin:/home/daylin/.dotfiles/bin"
|
|
|
|
export EGET_BIN=/home/$USER/bin
|
2022-12-13 13:18:51 -06:00
|
|
|
export EGET_CONFIG=/home/$USER/.config/eget/eget.toml
|
2022-12-10 12:18:26 -06:00
|
|
|
export DOTFILES_DIR=/home/$USER/.dotfiles
|
2022-12-09 14:25:06 -06:00
|
|
|
|
|
|
|
curl https://zyedidia.github.io/eget.sh | sh && mv ./eget ./bin/eget
|
2022-12-13 13:18:51 -06:00
|
|
|
eget Tomwright/dasel --asset dasel_linux_amd64
|
2022-12-09 14:25:06 -06:00
|
|
|
|
2022-12-13 13:18:51 -06:00
|
|
|
aweget $(awk '{printf "-i %s ", $0}' "$DOTFILES_DIR/docker/tools.txt")
|
2022-12-09 14:25:06 -06:00
|
|
|
|
|
|
|
# eget rossmacarthur/sheldon
|
|
|
|
eget tree-sitter/tree-sitter
|
|
|
|
|
|
|
|
# installing nvim
|
2022-12-10 12:18:26 -06:00
|
|
|
eget neovim/neovim --to ./nvim.appimage --pre-release
|
2022-12-13 13:18:51 -06:00
|
|
|
./nvim.appimage --appimage-extract >/dev/null 2>&1
|
2022-12-09 14:25:06 -06:00
|
|
|
./squashfs-root/AppRun --version
|
|
|
|
|
|
|
|
mv squashfs-root /
|
|
|
|
ln -s /squashfs-root/AppRun /usr/bin/nvim
|
|
|
|
rm nvim.appimage
|