Commit: ad1322c771304dd74b2cdd26563cee45a394cf58
Parent: 7457a060275c9971ae30da687c55d8520aaa5c69
Author: Randy Palamar
Date: Mon, 29 Dec 2025 19:43:53 -0700
vis: build.lua: use luatex instead of xelatex
Haven't had any problems with this for a while and its slightly
less slow.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.config/vis/build.lua b/.config/vis/build.lua
@@ -36,7 +36,7 @@ end
local function build_files(win)
local build_tex = function (f)
- local cmd = "xelatex -halt-on-error -shell-escape "
+ local cmd = "lualatex -halt-on-error -shell-escape "
-- build in draft mode to update references
local err, ostr = vis:pipe(cmd .. "-draftmode " .. f.name)