19 lines
304 B
Lua
19 lines
304 B
Lua
|
-- Author : swytch
|
||
|
-- Created : Monday May 17, 2022 16:29:18 CET
|
||
|
-- License : GPLv3
|
||
|
-- Description : neovim lsp config file for texlab
|
||
|
|
||
|
|
||
|
local M = {}
|
||
|
|
||
|
M.setup = function(opts)
|
||
|
opts.settings = {
|
||
|
build = {
|
||
|
executable = "pdflatex"
|
||
|
}
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|
||
|
|