summaryrefslogtreecommitdiff
path: root/lua/plugins/vimtex.lua
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <me@woz.blue> 2026-02-11 21:41:36 -0500
committerGravatar Matthew Wozniak <me@woz.blue> 2026-02-11 21:41:36 -0500
commitc70759274ba4cd4532bba7a4ce7d61b01634df77 (patch)
tree014a078780a381efb134f6a3223afc6014f462dc /lua/plugins/vimtex.lua
downloadnvim-master.tar.gz
nvim-master.zip
Diffstat (limited to 'lua/plugins/vimtex.lua')
-rw-r--r--lua/plugins/vimtex.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/plugins/vimtex.lua b/lua/plugins/vimtex.lua
new file mode 100644
index 0000000..db88ff0
--- /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
+}