aboutsummaryrefslogtreecommitdiff
path: root/windows/bin/nvim-update.cmd
blob: 5317f34d7f09481562df9861196e1c40a49f94ce (plain)
1
2
3
4
5
6
7
8
9
@echo off

where /q cl.exe
if errorlevel 1 (
  echo [nvim-update] cl.exe nicht gefunden - Neovim aus einer "Developer PowerShell for VS" starten. 1>&2
  exit /b 1
)

nvim --headless -c "lua require[[lazy]].sync({ wait = true })" -c "UpdateParsers" -c "qa"