Auto commit: 2024-11-09 16:50:02

This commit is contained in:
Daniel Fichtinger 2024-11-09 16:50:02 -05:00
parent 84a483debe
commit 9d75166ded

View file

@ -14,14 +14,14 @@ vim.api.nvim_create_autocmd("FileType", {
cl.Group.new("@constant.builtin", cl.colors.complement) cl.Group.new("@constant.builtin", cl.colors.complement)
end, end,
}) })
vim.api.nvim_create_autocmd("FileType", { -- vim.api.nvim_create_autocmd("FileType", {
pattern = "tex", -- pattern = "tex",
callback = function() -- callback = function()
vim.cmd([[ -- vim.cmd([[
syntax match texMathSymbol "\\oplus" conceal cchar= -- syntax match texMathSymbol "\\oplus" conceal cchar=
]]) -- ]])
end, -- end,
}) -- })
-- This autocommand fixes syntax highlighting for inline math in markdown files -- This autocommand fixes syntax highlighting for inline math in markdown files
-- Together with vimtex, it will apply very sexy good stuff here! -- Together with vimtex, it will apply very sexy good stuff here!
vim.api.nvim_create_autocmd("FileType", { vim.api.nvim_create_autocmd("FileType", {