diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ed0e3f9 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +plugged diff --git a/install.sh b/install.sh index 262853e..1bca940 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,9 @@ all() { cat ${TMPDIR}/PlugInstall.out nvim -c PlugStatus -c "write ${TMPDIR}/PlugStatus.out" -c quitall cat ${TMPDIR}/PlugStatus.out - nvim -c TSUpdate -c quitall + + # sleep 20s, no way I know to wait until everything is installed + nvim -c "TSUpdate" -c "30sleep" -c quitall lang_server ruby lang_server typescript @@ -25,7 +27,7 @@ install_brew_deps() { install_apk_deps() { if command -v apk > /dev/null; then - apk add nodejs npm ruby ruby-dev make clang + apk add nodejs npm ruby ruby-dev make clang ripgrep fi }