Skip to content
Snippets Groups Projects
Verified Commit 0483b6a6 authored by iliya.saroukha's avatar iliya.saroukha :first_quarter_moon:
Browse files

feat: added vimtex

parent c7b0da99
No related branches found
No related tags found
No related merge requests found
......@@ -74,3 +74,6 @@ vim.keymap.set("n", "<leader>mp", "<cmd>PeekOpen<CR>")
-- Quarto
vim.keymap.set("n", "<leader>qp", "<cmd>QuartoPreview<CR>")
-- Vimtex
vim.keymap.set("n", "<leader>lc", "<cmd>VimtexCompile<CR>")
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"
vim.g.vimtex_view_method = 'general'
vim.g.vimtex_syntax_enabled = 0
-- vim.g.vimtex_view_general_viewer = 'firefox'
-- vim.g.vimtex_view_general_options = '--new-window'
-- vim.g.vimtex_view_general_options = '--unique file:@pdf#src:@line@tex'
end
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment