add latex hot reload and lsp support
This commit is contained in:
parent
1e32fbb6fc
commit
4b52bd9237
1 changed files with 13 additions and 0 deletions
13
lua/plugins/latex.lua
Normal file
13
lua/plugins/latex.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
-- defines latex plugins, EXCEPT the lsp (defined in lsp.)
|
||||
|
||||
return {
|
||||
{
|
||||
"lervag/vimtex",
|
||||
ft = { "tex", "latex", "bib" },
|
||||
-- tag = "v2.15", -- uncomment to pin to a specific release
|
||||
init = function()
|
||||
-- VimTeX configuration goes here
|
||||
vim.g.vimtex_view_method = "skim"
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue