-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
37 lines (32 loc) · 977 Bytes
/
config.lua
File metadata and controls
37 lines (32 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
return {
-- editing, viewing and compiling environment
engine = { exe = "lualatex", args = "--interaction=nonstopmode" },
viewer = "zathura --fork",
editor = "vim",
settings = {
--ignore_hidden = false, -- used for deletion of files
raw_output = false, -- parse LaTeX output (false) or display LaTeX output plain (true)
--debug = false,
},
-- file names
--[[
file_list = {
main_file = "main",
project_file = ".project",
preamble_file = "preamble"
},
--]]
-- auxiliary files. This list is used to protect files not belonging to the project while cleaning up
--aux_files = { },
-- directories in which files will be stored
--[[
directories = {
file_dir = "files",
image_dir = "images",
project_dir = ".build",
minimal = ".minimal",
},
--]]
-- used for diffs to compare edits
--temporary_file = ".difftempfile",
}