diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-12-21 01:00:30 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-12-21 01:00:30 +0100 |
commit | d96c0af65865fe322e64d0cb76835fe8a797a009 (patch) | |
tree | 082d7387b9a7906e0dce95f4cfc2aaf4db113157 | |
parent | 22134d397b0c658723d29acdf1931d4dcab9f8b3 (diff) |
Delete sync
-rw-r--r-- | README.md | 6 | ||||
-rwxr-xr-x | sync.sh | 16 |
2 files changed, 0 insertions, 22 deletions
@@ -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) |