diff options
author | christianchiarulli <[email protected]> | 2021-07-08 18:56:45 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-08 18:56:45 -0400 |
commit | caa93e627cbe1ce7e0bd6247f80ea54ae59e6ba5 (patch) | |
tree | 86554ef94f2f2d147c4ac5dd351c1e70cd34ee3c /utils/installer/install.sh | |
parent | 89ba71ff8a8afa99f86f6701af8125c4274b63e1 (diff) | |
parent | 4ce73cdddb9c4b39ff6ebd463149689e18d192ac (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim
Diffstat (limited to 'utils/installer/install.sh')
-rwxr-xr-x | utils/installer/install.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 44f9e2e4..6ab87daf 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -102,12 +102,12 @@ cloneconfig() { echo "Cloning LunarVim configuration" git clone --branch master https://github.com/ChristianChiarulli/lunarvim.git ~/.config/nvim cp $HOME/.config/nvim/utils/installer/lv-config.example.lua $HOME/.config/nvim/lv-config.lua - nvim --headless \ + nvim -cq --headless \ + +'autocmd User PackerComplete sleep 100m | qall' \ + +PackerInstall >/dev/null 2>&1 + nvim -cq --headless \ +'autocmd User PackerComplete sleep 10m | qall' \ - +PackerInstall - nvim --headless \ - +'autocmd User PackerComplete sleep 10m | qall' \ - +PackerSync + +PackerSync >/dev/null 2>&1 echo -e "\nCompile Complete" # nvim --headless -cq ':silent TSUpdate' -cq ':qall' >/dev/null 2>&1 } |