AutoYADM commit: 2024-11-12 20:45:02

This commit is contained in:
Daniel Fichtinger 2024-11-12 20:45:03 -05:00
parent 2a3bb4e6f4
commit c317386863
2 changed files with 12 additions and 1 deletions

View file

@ -24,6 +24,17 @@ vim.api.nvim_create_autocmd("FileType", {
-- })
-- This autocommand fixes syntax highlighting for inline math in markdown files
-- Together with vimtex, it will apply very sexy good stuff here!
-- vim.api.nvim_create_autocmd("FileType", {
-- patterm = "tex",
-- callback = function()
-- vim.api.nvim_create_autocmd("BufWrite", {
-- buffer = 0,
-- callback = function()
-- vim.api.nvim_command("VimtexCompile")
-- end,
-- })
-- end,
-- })
vim.api.nvim_create_autocmd("FileType", {
pattern = "markdown",
callback = function()