summaryrefslogtreecommitdiff
path: root/ftplugin/tex.lua
blob: 5df3dd983314da88ff1013f9916d1223f8fed8e3 (plain)
1
2
3
4
5
6
7
-- Configure the compiler for latex

local function tex_root()
	return vim.fn.system('grep -rl -m 1 --include "*.tex" "documentclass"')
end

vim.opt_local.makeprg = "pdflatex -interaction=nonstopmode -file-line-error -synctex=1 " .. tex_root()