1
Fork 0

Lots of latex stuff and idk what else (timezone change!)

This commit is contained in:
Matei Adriel 2022-09-09 00:16:11 +02:00
commit f17b922131
31 changed files with 398 additions and 67 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -3,10 +3,15 @@ local global = require("my.helpers").global
local M = {}
function M.setup()
-- Viewer method
global("vimtex_view_method", "zathura")
global("Tex_DefaultTargetFormat", "pdf")
global("vimtex_compiler_latexmk", {options = {"-pdf", "-shell-escape", "-verbose", "-file-line-error", "-synctex=1", "-interaction=nonstopmode"}})
-- Viewer method
vim.g.vimtex_view_method = "zathura"
vim.g.Tex_DefaultTargetFormat = "pdf"
vim.g.vimtex_fold_enabled = 1
vim.g.vimtex_compiler_latexmk = {
options = {
"-pdf", "-shell-escape", "-verbose", "-file-line-error", "-synctex=1", "-interaction=nonstopmode"
}
}
end
return M