summaryrefslogtreecommitdiff
path: root/setup.sh
blob: ab86f040e490e57e8e16b884651fc9dde9adb614 (plain)
1
2
3
4
5
6
7
#!/bin/sh

which nvim >/dev/null 2>&1 || echo "Neovim not installed!" && exit 1
which luarocks >/dev/null 2>&1 || echo "Luarocks not installed!" && exit 1
luarocks list | grep "fennel" || echo "fennel is not installed" && exit 1

nvim --headless +qa && nvim --headless -c "autocmd User PackerComplete quitall" -c "PackerSync"