diff --git a/lua/plugins/latex.lua b/lua/plugins/latex.lua new file mode 100644 index 0000000..3e4a2ef --- /dev/null +++ b/lua/plugins/latex.lua @@ -0,0 +1,13 @@ +-- defines latex plugins, EXCEPT the lsp (defined in lsp.) + +return { + { + "lervag/vimtex", + ft = { "tex", "latex", "bib" }, + -- tag = "v2.15", -- uncomment to pin to a specific release + init = function() + -- VimTeX configuration goes here + vim.g.vimtex_view_method = "skim" + end, + }, +}