aboutsummaryrefslogtreecommitdiff
path: root/windows/bin/nvim-update.cmd
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-08-12 11:38:42 +0200
committerThomas Schmucker <ts@its1.de>2026-08-12 11:38:42 +0200
commitbdc80dabce5e46945ca34ccf74861371485ac2f2 (patch)
treec73ab4900ce8360ab230c7d46e114486bdea0d6a /windows/bin/nvim-update.cmd
parent189d244d36d4ebb2189b698adb21f51cf1c4176a (diff)
downloaddotfiles-bdc80dabce5e46945ca34ccf74861371485ac2f2.tar.gz
dotfiles-bdc80dabce5e46945ca34ccf74861371485ac2f2.tar.bz2
dotfiles-bdc80dabce5e46945ca34ccf74861371485ac2f2.zip
Normalize line endings
Diffstat (limited to 'windows/bin/nvim-update.cmd')
-rw-r--r--windows/bin/nvim-update.cmd24
1 files changed, 12 insertions, 12 deletions
diff --git a/windows/bin/nvim-update.cmd b/windows/bin/nvim-update.cmd
index bf9aff8..7521e7e 100644
--- a/windows/bin/nvim-update.cmd
+++ b/windows/bin/nvim-update.cmd
@@ -1,12 +1,12 @@
1@echo off 1@echo off
2 2
3rem Prüft vor dem Parser-Update, ob ein C-Compiler (cl.exe, MSVC) im PATH 3rem Prüft vor dem Parser-Update, ob ein C-Compiler (cl.exe, MSVC) im PATH
4rem gefunden wird - nvim-treesitter braucht ihn zum Kompilieren der Parser. 4rem gefunden wird - nvim-treesitter braucht ihn zum Kompilieren der Parser.
5 5
6where /q cl.exe 6where /q cl.exe
7if errorlevel 1 ( 7if errorlevel 1 (
8 echo [nvim-update] cl.exe nicht gefunden - Neovim aus einer "Developer PowerShell for VS" starten. 1>&2 8 echo [nvim-update] cl.exe nicht gefunden - Neovim aus einer "Developer PowerShell for VS" starten. 1>&2
9 exit /b 1 9 exit /b 1
10) 10)
11 11
12nvim --headless -c "lua require[[lazy]].sync({ wait = true })" -c "UpdateParsers" -c "qa" 12nvim --headless -c "lua require[[lazy]].sync({ wait = true })" -c "UpdateParsers" -c "qa"