diff options
Diffstat (limited to 'sync.sh')
-rwxr-xr-x | sync.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sync.sh b/sync.sh deleted file mode 100755 index c2573f5..0000000 --- a/sync.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -CONFIG=$HOME/.config/nvim -rm -rf "$CONFIG/lua" - -# Check dependencies -which nvim >/dev/null 2>&1 || - (echo "Neovim not installed!" && exit 1) -which fennel >/dev/null 2>&1 || - (echo "fennel is not installed" && exit 1) - -# Bootstrap installment -(nvim --headless +qa >/dev/null 2>&1 && - nvim --headless +"au User PackerComplete qa" +PackerSync +TSUpdateSync >/dev/null 2>&1 && - echo "Successfully bootstrapped the config!") || - (echo "Bootstrapping failed..." && exit 1) |