add old files

This commit is contained in:
Josue Zamudio Estrada
2024-03-02 05:13:28 -08:00
parent 2ea1d0c890
commit 04696d3f0b
14 changed files with 625 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
return{
'lervag/vimtex',
config = function()
-- This is necessary for VimTeX to load properly. The "indent" is optional.
-- Note that most plugin managers will do this automatically.
vim.cmd("filetype plugin indent on")
-- This enables Vim's and neovim's syntax-related features. Without this, some
-- VimTeX features will not work (see ":help vimtex-requirements" for more
--info).
vim.cmd("syntax enable")
-- Viewer options: One may configure the viewer either by specifying a built-in
-- viewer method:
vim.cmd("let g:vimtex_view_method = 'zathura'")
end,
}