From a334970ab535159304dbcd366fc05f628ee46259 Mon Sep 17 00:00:00 2001 From: minco Date: Mon, 6 Oct 2025 22:37:51 +0900 Subject: [PATCH] feat: add tex tools --- lua/plugins/knap.lua | 1 + lua/plugins/vimtex.lua | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 lua/plugins/knap.lua create mode 100644 lua/plugins/vimtex.lua diff --git a/lua/plugins/knap.lua b/lua/plugins/knap.lua new file mode 100644 index 0000000..3bc53d0 --- /dev/null +++ b/lua/plugins/knap.lua @@ -0,0 +1 @@ +return { "frabjous/knap" } diff --git a/lua/plugins/vimtex.lua b/lua/plugins/vimtex.lua new file mode 100644 index 0000000..7e8056a --- /dev/null +++ b/lua/plugins/vimtex.lua @@ -0,0 +1,9 @@ +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 +}