summaryrefslogtreecommitdiffstats
path: root/lua/plugins/tex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/tex.lua')
-rw-r--r--lua/plugins/tex.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/plugins/tex.lua b/lua/plugins/tex.lua
new file mode 100644
index 0000000..383e166
--- /dev/null
+++ b/lua/plugins/tex.lua
@@ -0,0 +1,10 @@
+return {
+ {
+ 'lervag/vimtex',
+ lazy = false,
+ config = function()
+ vim.g.vimtex_quickfix_open_on_warning = 0
+ vim.keymap.set('n', '<leader>ll', '<Cmd>VimtexCompileSS<CR>')
+ end,
+ },
+}