refined nvim latex config

This commit is contained in:
2025-11-12 19:48:00 +01:00
parent 3882349c80
commit 8e053799fd
3 changed files with 1 additions and 4 deletions

View File

@@ -27,7 +27,6 @@ return {
{ import = "astrocommunity.pack.php" }, { import = "astrocommunity.pack.php" },
{ import = "astrocommunity.markdown-and-latex.vimtex" }, { import = "astrocommunity.markdown-and-latex.vimtex" },
{ import = "astrocommunity.completion.cmp-latex-symbols" },
{ import = "astrocommunity.keybinding.nvcheatsheet-nvim" }, { import = "astrocommunity.keybinding.nvcheatsheet-nvim" },
-- import/override with your plugins folder -- import/override with your plugins folder

View File

@@ -3,7 +3,7 @@ return {
-- Make sure autosnippets are enabled globally -- Make sure autosnippets are enabled globally
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
opts = function(_, _) require("luasnip").config.setup { enable_autosnippets = true } end, opts = function(_, opts) opts.enable_autosnippets = true end,
}, },
-- The LaTeX snippets themselves -- The LaTeX snippets themselves

View File

@@ -14,8 +14,6 @@ return {
"-synctex=1", "-synctex=1",
"-interaction=nonstopmode", "-interaction=nonstopmode",
"-file-line-error", "-file-line-error",
-- remove if you don't need shell-escape:
"-shell-escape",
}, },
} }
-- Option B (also helpful): make LuaLaTeX the default engine for latexmk -- Option B (also helpful): make LuaLaTeX the default engine for latexmk