summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rwxr-xr-xsync.sh16
2 files changed, 0 insertions, 22 deletions
diff --git a/README.md b/README.md
index a73892e..f5265c4 100644
--- a/README.md
+++ b/README.md
@@ -8,12 +8,6 @@ My neovim config written in fennel.
neovim = nightly
```
-# Sync
-
-Sync plugins (experimental):
-
-`./sync.sh`
-
# Structure
```
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)