update
This commit is contained in:
parent
81c3cd2ac0
commit
0ae1cf0a07
5 changed files with 802 additions and 46 deletions
15
lua/custom/plugins/latex.lua
Normal file
15
lua/custom/plugins/latex.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
-- install texlive-most
|
||||
return {
|
||||
'lervag/vimtex',
|
||||
'sirver/ultisnips',
|
||||
'KeitaNakamura/tex-conceal.vim',
|
||||
config = function()
|
||||
vim.g.UltiSnipsExpandTrigger = '<tab>'
|
||||
vim.g.UltiSnipsJumpForwardTrigger = '<tab>'
|
||||
vim.g.UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
||||
vim.g.tex_flavor = 'latex'
|
||||
vim.g.vimtex_view_method = 'zathura'
|
||||
vim.g.vimtex_quickfix_mode = 0
|
||||
vim.g.tex_conceal = 'abdmg',
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue