Neovim: Enable -shell-escape for vimtex latexmk
This commit is contained in:
@ -828,6 +828,7 @@ in {
|
|||||||
markdown = ["vale"];
|
markdown = ["vale"];
|
||||||
nix = ["statix"];
|
nix = ["statix"];
|
||||||
python = ["flake8"];
|
python = ["flake8"];
|
||||||
|
tex = ["chktex"];
|
||||||
# rust = ["clippy"]; # Not supported, but integrated through rustaceanvim
|
# rust = ["clippy"]; # Not supported, but integrated through rustaceanvim
|
||||||
text = ["vale"];
|
text = ["vale"];
|
||||||
};
|
};
|
||||||
@ -1654,6 +1655,14 @@ in {
|
|||||||
init = ''
|
init = ''
|
||||||
function()
|
function()
|
||||||
vim.g.vimtex_view_method = "zathura"
|
vim.g.vimtex_view_method = "zathura"
|
||||||
|
vim.g.vimtex_compiler_latexmk = {
|
||||||
|
options = {
|
||||||
|
"-shell-escape",
|
||||||
|
"-file-line-error",
|
||||||
|
"-synctex=1",
|
||||||
|
"-interaction=nonstopmode",
|
||||||
|
},
|
||||||
|
}
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user