aboutsummaryrefslogtreecommitdiff
path: root/windows/bin
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-07-27 10:06:17 +0200
committerThomas Schmucker <ts@its1.de>2026-07-27 10:06:17 +0200
commit19b0f50dcdcb517e0ea1362b3644a42a91844ab8 (patch)
tree3d02e30cf1da103a9757878b9aafc0fbd95c40b6 /windows/bin
parent9433e7e35499ba5aa7a643b51c3d2101e174aa31 (diff)
parent7d29d60f7ca96cd0d76008345ec788671cfb7573 (diff)
downloaddotfiles-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.cmd11
-rw-r--r--windows/bin/nvim-update.cmd2
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
2rem Wrapper, damit opt.makeprg = "gmake" (aus nvim/lua/config/options.lua)
3rem unter Windows funktioniert, ohne die bestehende Config anzupassen.
4rem Reicht alle Argumente an das im PATH gefundene "make" weiter.
5rem
6rem Einmalig einrichten: dieses Verzeichnis (windows\bin) zum PATH
7rem hinzufuegen, z.B. ueber:
8rem setx PATH "%PATH%;%USERPROFILE%\dotfiles\windows\bin"
9
10make %*
11exit /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
2nvim --headless "+Lazy! sync" "+qa"