From 89f1e22428dd18f8c8315b2674aa3850f9c366df Mon Sep 17 00:00:00 2001 From: MaasOedipa Date: Wed, 29 Oct 2025 10:32:33 +0100 Subject: [PATCH] vimtex added --- lua/custom/plugins/vimtex.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/custom/plugins/vimtex.lua diff --git a/lua/custom/plugins/vimtex.lua b/lua/custom/plugins/vimtex.lua new file mode 100644 index 00000000..b632b8c4 --- /dev/null +++ b/lua/custom/plugins/vimtex.lua @@ -0,0 +1,12 @@ +-- See the kickstart.nvim README for more information +return { + { + 'lervag/vimtex', + lazy = false, -- we don't want to lazy load VimTeX + -- tag = "v2.15", -- uncomment to pin to a specific release + init = function() + -- VimTeX configuration goes here, e.g. + vim.g.vimtex_view_method = 'zathura' + end, + }, +}