diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-07-27 10:06:17 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-07-27 10:06:17 +0200 |
| commit | 19b0f50dcdcb517e0ea1362b3644a42a91844ab8 (patch) | |
| tree | 3d02e30cf1da103a9757878b9aafc0fbd95c40b6 /windows/bin | |
| parent | 9433e7e35499ba5aa7a643b51c3d2101e174aa31 (diff) | |
| parent | 7d29d60f7ca96cd0d76008345ec788671cfb7573 (diff) | |
| download | dotfiles-19b0f50dcdcb517e0ea1362b3644a42a91844ab8.tar.gz dotfiles-19b0f50dcdcb517e0ea1362b3644a42a91844ab8.tar.bz2 dotfiles-19b0f50dcdcb517e0ea1362b3644a42a91844ab8.zip | |
Merge branch 'windows-port'
Diffstat (limited to 'windows/bin')
| -rw-r--r-- | windows/bin/gmake.cmd | 11 | ||||
| -rw-r--r-- | windows/bin/nvim-update.cmd | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/windows/bin/gmake.cmd b/windows/bin/gmake.cmd new file mode 100644 index 0000000..89f3a29 --- /dev/null +++ b/windows/bin/gmake.cmd | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | @echo off | ||
| 2 | rem Wrapper, damit opt.makeprg = "gmake" (aus nvim/lua/config/options.lua) | ||
| 3 | rem unter Windows funktioniert, ohne die bestehende Config anzupassen. | ||
| 4 | rem Reicht alle Argumente an das im PATH gefundene "make" weiter. | ||
| 5 | rem | ||
| 6 | rem Einmalig einrichten: dieses Verzeichnis (windows\bin) zum PATH | ||
| 7 | rem hinzufuegen, z.B. ueber: | ||
| 8 | rem setx PATH "%PATH%;%USERPROFILE%\dotfiles\windows\bin" | ||
| 9 | |||
| 10 | make %* | ||
| 11 | exit /b %ERRORLEVEL% | ||
diff --git a/windows/bin/nvim-update.cmd b/windows/bin/nvim-update.cmd new file mode 100644 index 0000000..7e8260e --- /dev/null +++ b/windows/bin/nvim-update.cmd | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | @echo off | ||
| 2 | nvim --headless "+Lazy! sync" "+qa" | ||
