summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/vimtex.lua
blob: 31ee15e54eb43e9a7a1a32d107efd50220554036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
	"lervag/vimtex",
	ft = { "texinfo", "tex", "aux", "bib" },
	config = function()
		vim.g.vimtex_view_general_viewer = "open"
		vim.g.vimtex_view_general_options = "-a zathura"
		vim.g.tex_flavor = "latex"
		vim.g.tex_no_error = 1
		vim.g.tex_conceal = "abdmg"
		vim.api.set_keymap("n", "<C-n>", "<Plug>(vimtex-toc-open)", { noremap = false, silent = true })
	end,
}