generation 533 25.11.20250714.62e0f05

This commit is contained in:
2025-10-15 16:12:33 -04:00
parent eda2ab34bd
commit 25d8a36df0
5 changed files with 36 additions and 20 deletions

View File

@@ -119,6 +119,7 @@ in {
sage
yq
semgrep
tectonic
# texlive.combined.scheme-full
# security

View File

@@ -31,6 +31,8 @@
black
nodejs_22
latexrun
tectonic
texpresso
# gh
];

View File

@@ -3,9 +3,10 @@ vim.cmd("filetype plugin indent on")
vim.cmd("syntax enable")
-- Viewer options: either with a built-in viewer method or with a generic interface.
vim.g.vimtex_view_method = 'zathura'
vim.g.vimtex_view_general_viewer = 'zathura'
vim.g.vimtex_view_general_options = '--unique file:@pdf#src:@line@tex'
-- vim.g.vimtex_view_method = 'zathura'
-- vim.g.vimtex_view_general_viewer = 'zathura'
-- vim.g.vimtex_view_general_options = '--unique file:@pdf#src:@line@tex'
-- Set the TeX flavor and quickfix mode.
vim.g.tex_flavor = 'latex'
@@ -13,27 +14,38 @@ vim.g.vimtex_quickfix_mode = 0
vim.g.vimtex_quickfix_enabled = 0
-- Compiler backend.
vim.g.vimtex_compiler_method = 'latexmk'
-- vim.g.vimtex_compiler_method = 'latexmk'
vim.g.vimtex_quickfix_autoclose_after_keystrokes = 3
vim.g.vimtex_compiler_method = "tectonic"
vim.g.vimtex_compiler_tectonic = {
options = {
"--keep-intermediates", -- faster compile times
"--keep-logs",
"--synctex",
"-Z shell-escape",
-- "-Z deterministic-mode", -- breaks synctex
},
}
-- Set the local leader (default is "\"; here we change it to comma).
vim.g.maplocalleader = ','
-- Configure warnings to ignore.
vim.g.Tex_IgnoredWarnings = [[
Package hyperref Warning
Token not allowed in a PDF string (Unicode)
removing math shift
removing superscript
Underfull
Overfull
specifier changed to
You have requested
Missing number, treated as zero.
There were undefined references
Citation %.%# undefined
Double space found.
]]
vim.g.Tex_IgnoreLevel = 8
-- vim.g.Tex_IgnoredWarnings = [[
-- Package hyperref Warning
-- Token not allowed in a PDF string (Unicode)
-- removing math shift
-- removing superscript
-- Underfull
-- Overfull
-- specifier changed to
-- You have requested
-- Missing number, treated as zero.
-- There were undefined references
-- Citation %.%# undefined
-- Double space found.
-- ]]
-- vim.g.Tex_IgnoreLevel = 8
-- Delete extra compilation files when a TeX buffer is deleted.
vim.api.nvim_create_autocmd("BufDelete", {