feat: add tex tools

This commit is contained in:
2025-10-06 22:37:51 +09:00
parent 5d0ff0f065
commit a334970ab5
2 changed files with 10 additions and 0 deletions

1
lua/plugins/knap.lua Normal file
View File

@@ -0,0 +1 @@
return { "frabjous/knap" }

9
lua/plugins/vimtex.lua Normal file
View File

@@ -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
}