Lots of latex stuff and idk what else (timezone change!)
This commit is contained in:
parent
b1ec69ad9d
commit
f17b922131
31 changed files with 398 additions and 67 deletions
dotfiles/neovim/lua/my/plugins
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue